Tagged Questions

1
vote
1answer
78 views

why IExtenderProvider Properties are lost in Designer in C# window appliaction?

Hi All, I have created a IExtenderProvider (Extender) for Controls.using Extender ,I am Iterating the collection of controls and validate it.It works fine.but, some time while changing some …
0
votes
1answer
115 views

How do I add PropertyDescriptors to a class rather then override them?

If I have a class that implements ICustomTypeDescriptor I can override the GetProperties() method to completely replace all the properties of the class with my custom PropertyDescriptors. But what …
0
votes
3answers
567 views

UITypeEditor and IExtenderProvider

I have an extender (IExtenderProvider) which extends certain types of controls with additional properties. For one of these properties, I have written a UITypeEditor. So far, all works just fine. …
2
votes
1answer
246 views

.NET IExtenderProvider (C#)

I'm trying to extend the controls TextBox, ComboBox and Panel with an IExtenderProvider but I can not get it to work properly. I start to believe that I haven't understand the concept fully. Does …