I would like to create my own WPF control using generics:
public class MyGenericTypeControl<T> : ItemsControl {
Can this be done? In my initial experiment, I get development-time / compile-time XAML errors as soon as I try to add this control somewhere. This is not surprising since building my user control requires additional information that XAML does not provide.
Any ideas?
kindohm
source share