How can I specify a CollectionControl's ItemsSource type in XAML?
In the code behind I can do this:
In the code behind I can do this:
MyCollectionControl.ItemsSourceType = typeof(ObservableCollection<MyClass>);
But I can't figure out how to do it in pure XAML.