Tagged Questions
The iextenderprovider tag has no wiki summary.
2
votes
1answer
647 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 ...
1
vote
1answer
754 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 ...
1
vote
1answer
319 views
why IExtenderProvider Properties are lost in Designer in C# window appliaction?
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 designs,or when ...
0
votes
1answer
88 views
How to extend control events IExtenderProvider?
Is there a way to add events to a control like adding properties to a control with IExtenderProvider?
I try to write an own validtor with an errorpovider. with IExtenderProvider i'm adding the ...
0
votes
3answers
1k 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.
...