Is there a way to specify a default property to be referenced by the Path with data binding within XAML? I am looking to be able to do something like what CollectionViewSource does when using Binding.
When you bind to a CollectionViewSource within XAML, it is automatically hooking up Path to the View property.
Eg: {Binding Source={StaticResource cvs}} is the same as {Binding Path=View, Source={StaticResource cvs}}
Is it possible to do the same thing in a custom DependencyObject or POCO?