typedescriptionprovider

How can I avoid having a separate custom TypeDescriptorProvider for each of my classes?

I've added functionality to my project that allows the users to add their own custom properties to objects. I've created my own custom TypeDescriptor, PropertyDescriptor and TypeDescriptorProviders etc.. etc.. to do this. Here's my problem. Right now I have it all working, but had to create a separate TypeDescriptionProvider for each o...

Custom TypeDescriptionProvider works for one type but not another

I'm using a custom TypeDescriptionProvider and a custom TypeDescriptor to allow users to attribute objects with their own custom properties. For example I have two classes which are sometimes displayed in a PropertyGrid SiteRegion, and FootPrintBuilding. Each is attributed with my custom TypeDescriptionProvider. [TypeDescriptionProvider...

TypeDescriptionProvider / HyperDescriptor implementation

I am currently populating my WPF grid using a data collection that implements ITypedList, with the contained entities implementing ICustomTypeDescriptor. All the properties are determined at runtime. I'm wanting to implement HyperDescriptor to help speed up performance, but the example on that page more refers to known types rather tha...