vote up 2 vote down star
1

I can't seem to find the answer to this anywhere. What default editors/converters are building into 3.5 Framework PropertyGrid control. Otherwise what object types can I throw at it and it be able to reliably show and edit? I've found a lot of tutorials on using custom editors (which I may do at some point). But right now in my program I'm allowing the user to create their own custom properties and I want to know what object types I should allow assuming they will be editing them in a PropertyGrid.

flag

59% accept rate

4 Answers

vote up 1 vote down check

You might want to take a look at classes that derive from UITypeEditor (in the System.Drawing.Design namespace). These types will be passed as parameters to the Editor attribute (in the System.ComponentModel namespace).

You can also look at the metadata for the type to see where the Editor attribute is applied. However, DO NOT use Reflection here, as that is not what the PropertyGrid uses.

Rather use the TypeDescriptor class to get property descriptors for the properties on the type (call the static GetProperties method). Then, with the PropertyDescriptor instance, call the GetEditor class to get an instance of the editor for that property.

link|flag
I see UITypeEditor but not UIEditor, are you sure that is the right name or did something change between framework versions? – Eric Apr 9 at 20:10
@Eric: Updated post to reflect correction. – casperOne Apr 9 at 20:34
vote up 1 vote down

Besides UITypeEditors, the PropertyGrid is able to display any object with a TypeConverter that returns true for CanConvertFrom(String). You can implement your own TypeConverters for specific object types in order to accomplish this.

link|flag
vote up 1 vote down

The PropertyGrid uses TypeConverters and there are TypeConverters for every primitive type (as well as collections of primitive types).

As long as you're using one of the primitive types or a collection of primitive types the property grid should be able to take care of providing an editing UI.

link|flag
vote up 0 vote down

You can actually throw any object at the PropertyGrid. It will do a lot of things automatically. You only need to create custom UI type editors if you want to have a special edit experience, which is not natively provided. And even in that case you do it per property and not for a whole object.

link|flag
But what are all the things it will do automaticly? Right now I don't want to deal with custom editors. I've tried various numbers, string, bool, and DateTime and they all either work or have built in editors. I was hoping there was a list somewhere of all the types that can be edited by default. – Eric Apr 9 at 19:45
You can look at the inheritance hierarchy of your property types if they have a UITypeEditor attached as an attribute or not. By default the property grid needs either an editor or a type converter to get to/from string. – __grover Apr 9 at 19:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.