Tagged Questions
The customtypedescriptor tag has no wiki summary.
21
votes
1answer
4k views
ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor
I'm trying to get an overall understanding of how you use ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor to change how a PropertyGrid displays and interfaces with an ...
2
votes
2answers
106 views
Get *value* of custom property on object instance?
Using .NET 4, C#
Let's say I have class Info that extends CustomTypeDescriptor. An instance of class Info has a dictionary of <string, object> pairs, loaded at runtime.
I'd like to be able to ...
0
votes
0answers
98 views
Why does WPF seem to bypass TypeDescriptionProviderAttribute when INotifyPropertyChanged is implemented?
I'm trying to use the [TypeDescriptionProviderAttribute] in order to give my class a custom type descriptor. This works, but when I implement INotifyPropertyChanged WPF seems to ignore the custom type ...
0
votes
1answer
60 views
ICustomTypeDescriptor and XAML Serialization
I have a business object that can be edited via PropertyGrid. It contains list of labels (let's say strings for simplification).
public class MyObject
{
// bunch of properties here, cut for ...
0
votes
1answer
337 views
C#: ControlDesigner DLL as embedded resources, is it possible?
I trying to create a custom control with ControlDesigner. I have found a way to use ControlDesinger with CLientProfile at http://code.msdn.microsoft.com/WinFormsCustomCtrl , but to use this methode ...
0
votes
1answer
243 views
ICustomTypeDescriptor for simulating strong-typing
I thought about simulating strong-typing for key-value configuration of a new project by providing fake property info via implementing ICustomTypeDescriptor.
The configuration instance should provide ...
0
votes
2answers
496 views
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 ...
0
votes
2answers
1k views
How to get all properties of an object and its sub objects
I have a similar question to this one except I need to loop all the sub objects and change the property to read-only
Please check my code below. This one loop only the main object. When I tried to ...