
Hi,
I have a object has a collection property with type ObservableCollection<MyClass>, and I have definded my own TypeDescriptorFactory, and override GetProperties() in it. I want to create the collection property and its items as the collction property's sub property, and also the item's property displayed in PropertyGrid. I had tried to override CreateCollectionPropertyModel() to create the property, but I found the item's properties were not displayed, and the TypeConverter didn't work, so I am wondering how to create the collction property in my customer TypeDescriptorFactory
Thank you