Click here to Skip to main content
15,861,125 members
Articles / Desktop Programming / Windows Forms

Add Custom Properties to a PropertyGrid

Rate me:
Please Sign up or sign in to vote.
4.94/5 (219 votes)
22 Aug 2006Apache6 min read 1.6M   27.7K   443   347
Extend a PropertyGrid with an Item collection; easy customization of properties with custom editor, custom converter and databinding.

Sample project

Sample project

Introduction

For my last project, I looked at the PropertyGrid control that has a very nice look and feel. Immediately, I noticed how difficult it was to use it. Looking over the Internet, I found lots of people wishing for something easier to use, like the TreeView or the ListView. So I started developing an extended version of the PropertyGrid that includes an Item collection.

Using the Code

The control is made of three basic classes:

  • Class CustomProperty, that represents a single property.
  • Class CustomPropertyDescriptor, that is used internally by the PropertyGrid to retrieve property attributes.
  • Class CustomPropertyCollection, that represents a collection of CustomPropertys.

In the end, we have the control PropertyGridEx that inherits from PropertyGrid and exposes an Item collection. To use the component, add it to the Toolbox and then to your form. Compared to the classic PropertyGrid, we have a new property to set, called ShowCustomProperties.

Properties

The property must be set to True, or the component will have the same behavior as the classic PropertyGrid.

The Item Collection

We are now ready to fill our custom properties.

VB.NET
With Properties
    .Item.Clear()
    .Item.Add("My String", "My Value", False, _
              "Simple type", "This is a string", True)
    .Item.Add("My Integer", 100, False, "Simple type", _
              "This is an integer", True)
    .Item.Add("My Double", 10.4, False, "Simple type", _
              "This is a double", True)
    .Item.Add("My Font", New Font("Arial", 9), False, _
              "Classes", "This is a font class", True)
    .Item.Add("My Color", New Color(), False, _
              "Classes", "This is a color class", True)
    .Item.Add("My Point", New Point(10, 10), False, _
              "Classes", "This is point class", True)
    .Refresh()
End With

The CustomProperty class exposes several properties that you can use to personalize your PropertyGrid:

  • Name, a string representing the property name;
  • Value, an object representing the value of the property;
  • IsReadOnly, a boolean that indicates if the property is editable or not;
  • Category, a string that represents the category in which the property is shown;
  • Description, a string that represents the description of the property, shown at the bottom of the component;
  • Visible, a boolean that indicates if the property is shown or not;

Finally, remember to Refresh the PropertyGrid after any modification to the collection.

Common Properties

The Filename Editor

It is also possible to create a CustomProperty that shows a dialog to modify a filename. The trick is achieved by the class UIFilenameEditor that inherits from System.Drawing.Design.UITypeEditor. You can create a property, with the well known FileDialog as a Type Editor, in the following way:

VB.NET
With Properties   
    .Clear
    .Item.Add("Filename", "", False, "Misc", "", True)
    .Item(.Item.Count - 1).UseFileNameEditor = True
    .Item(.Item.Count - 1).FileNameDialogType _
                         = FileDialogType.LoadFileDialog
    .Item(.Item.Count - 1).FileNameFilter = _
         "Text files (*.txt)|*.txt|All files (*.*)|*.*"
    .Refresh()
End With

Following is the resulting PropertyGrid. Please notice the Ellipsis symbol beside the value of the property, to access the UIFilenameEditor.

Filename Editor

Custom Choices Type Converter

It's a very commonly requested feature to have a list of values from which the user can choose, while editing a property. To implement a dropdown list, do the following:

VB.NET
Dim Languages As String() = New String() {"English", _
                                          "Italian", _
                                          "Spanish", _
                                          "Dutch"}
With Properties   
    .Clear
    .Item.Add("Language", "", False, "Misc", "")
    .Item(.Item.Count - 1).Choices _
                         = New CustomChoices(Languages, True)
    .Refresh()
End With

You can use arrays of String, Integer, Double and Object to initialize the Choices property. Following is the resulting PropertyGrid initialized with an array of Strings.

Custom Choices TypeConverter

Enumerations

Most of the times, developers have enumerations declared in their code. The component automatically shows a dropdown list with the values from the Enum.

VB.NET
Public Enum MyEnum
    FirstEntry
    SecondEntry
    ThirdEntry
End Enum

With Properties 
    .Clear
    .Item.Add("Enum", MyEnum.FirstEntry, False, "Misc")
    .Refresh()
End With

Following is the resulting PropertyGrid.

Enum Property

Expandable Object Converter

Using this TypeConverter, it is possible to expand nested properties. Here is an example that shows the application settings.

VB
With Properties 
    .Clear
    .Item.Add("My settings", My.MySettings.Default, False, "Misc")
    .Item(.Item.Count - 1).IsBrowsable = True
    .Item(.Item.Count - 1).BrowsableLabelStyle = _
                           BrowsableTypeConverter.LabelStyle.lsEllipsis
    .Refresh()
End With

Following is the resulting PropertyGrid.

Expandable Property

Password fields

Using masked fields, it is possible to hide the value of a property. The result is produced by the attribute PasswordPropertyTextAttribute, new to the .NET Framework v2.0. Here is an example on how to use it.

VB.NET
With Properties 
    .Clear
    .Item.Add("My Password", "password", False)
    .Item(.Item.Count - 1).IsPassword = True
    .Refresh()
End With

Following is the resulting PropertyGrid.

Password Property

Dynamic property binding

Using PropertyGridEx, it is possible to bind object properties to the component. This is done by a method of the collection that accepts a value argument by reference. In this way, it is possible to freely mix reference type and value type properties. The following example binds the AutosizeProperties and the DrawFlatToolbar property of the grid.

Any modification to the value of these properties is automatically reflected into the object they belong to.
VB.NET
With Properties 
    .Clear
    .Item.Add("Autosize properties", Properties, "AutoSizeProperties", False, _
              "Dynamic Properties", "This is a dynamic bound property", True)
    .Item.Add("Draw flat toolbar", Properties, "DrawFlatToolbar", False, _
              "Dynamic Properties", "This is a dynamic bound property", True)
    .Refresh()
End With

Following is the resulting PropertyGrid.

Dynamic Properties

Multiple object properties

One more feature provided with this control is the ability of editing multiple object properties at the same time. This is done by a collection of objects attached to the SelectedObjects property of the base component. The behavior is that the grid only displays the properties that are common to all the objects that are in the array. To activate the multiple objects functionality, the property of the grid ShowCustomPropertiesSet must be set to True.

VB.NET
With Properties
    .ShowCustomPropertiesSet = True
    .ItemSet.Clear()

    .ItemSet.Add()
    .ItemSet(0).Add("My Point", New Point(10, 10), False, "Appearance")
    .ItemSet(0).Add("My Date", New Date(2006, 1, 1), False, "Appearance")

    .ItemSet.Add()
    .ItemSet(1).Add("My Point", New Point(10, 10), False, "Appearance")
    .ItemSet(1).Add("My Date", New Date(2007, 1, 1), False, "Appearance")
    .ItemSet(1).Add("My Color", New Color(), False, "Appearance")

    .Refresh()
End With

Following is the resulting PropertyGrid.

Multi object Properties

Databinding of a Property to a Datasource

The databinding of a single property to a data-source is the latest addition to this component. The wrapper created accepts for a CustomProperty, three members:

  • Datasource, the datasource to bind to.
  • DisplayMember (optional), the field used to bind the list shown in the dropdown control.
  • ValueMember (optional), the field used to bind the value returned by the CustomProperty.
The CustomProperty will return the following values:
  • Value, that represents the value shown as System.String.
  • SelectedItem, that represents the object selected as System.Object.
  • SelectedValue, that represents the value selected as System.Object.
The following example creates three properties that bind a DataTable, an array of Objects, and an array of Strings.
VB.NET
With Properties
    .Item.Clear()
    .Item.Add("Datatable", "", False, "Databinding", _
              "This is a UITypeEditor that implement a listbox", True)

    .Item(.Item.Count - 1).ValueMember = "book_Id"
    .Item(.Item.Count - 1).DisplayMember = "title"      
    .Item(.Item.Count - 1).Datasource = LookupTable

    .Item.Add("Array of objects", ListValues(2).Text, False, "Databinding", _
              "This is a UITypeEditor that implement a listbox", True)

    .Item(.Item.Count - 1).ValueMember = "Value"
    .Item(.Item.Count - 1).DisplayMember = "Text"
    .Item(.Item.Count - 1).Datasource = ListValues   

    .Item.Add("Array of strings", Languages(1), False, "Databinding", _
              "This is a UITypeEditor that implement a listbox", True)

    .Item(.Item.Count - 1).Datasource = Languages    
    .Refresh()
End With

Please notice that the result is very different from the one achieved by using the "Custom Choices" functionality, that uses a TypeConverter. The databinding feature uses a UITypeConverter that implements a ListBox control.

Following is the resulting PropertyGrid.

Properties Databinding

Custom Event Editor

Using PropertyGridEx, it is possible to bind the 3-dots button used in Modal editors with a custom event handler. This is done by a method of the CustomProperty that accepts a Delegate as argument. The following is an example:

VB.NET
With Properties 
    .Clear
    .Item.Add("My Custom Event", "(Click me)", False, "Misc", _
              "The component accept custom event handler.", True) 
    .Item(.Item.Count - 1).OnClick = AddressOf Me.CustomEventItem_OnClick     
    .Refresh()
End With

The event will be handled by this function:

VB
Private Function CustomEventItem_OnClick(ByVal sender As Object, _
                                         ByVal e As EventArgs) As Object 
    MsgBox("You clicked on property '" & sender.CustomProperty.Name & "'", _
           MsgBoxStyle.Information, _
           "Custom Events as UITypeEditor") 
    Return "(Click me again)" 
End Function 

Please notice that the result value of the function will be the new value of the property. Following is the resulting PropertyGrid.

Image 13

Add some style to the control

Looking on Internet and on CodeProject, I found a lot of articles regarding this component. Unfortunately, I had to merge everything together to have an easier PropertyGrid to use. In this section, you'll find small features I've found and added in this project.

  • AutoSizeProperties - Move automatically the splitter to better fit all the properties shown.
  • MoveSplitterTo - Move the splitter as indicated by the user in the parameter.
  • DocComment - Expose the comments area as a control.
  • DrawFlatToolbar - Draw a flat toolbar or a VS like toolbar.

Please notice that the last property switches the drawing of the toolbar within a Professional Renderer with custom colors and a System Renderer.

Final Notes

I hope that you find this article useful. If you found this article stupid, annoying, incorrect, etc., express this fact by rating the article as you see fit.

Credits

Thanks to Pascal Higelin for providing the Property Binding feature and the C# version.
Thanks to Suresh Kavan, for the idea and the test case for the data-binding feature.

References

History

  • 22nd August 2006
    • Added XML Editor sample.
  • 31st May 2006
    • Added custom event editor.
    • Added DocComment interface.
  • 5th May 2006
    • Added serialization.
    • Added property databinding.
    • Article updated.
  • 28th April 2006
    • Added C# version.
    • Added dynamic property binding.
    • Added multiple objects feature.
  • 10th April 2006
    • Added password property and improved ToolStrip look.
    • Added expandable object converter.
    • Added custom choices type converter.
    • Added file name editor.
  • 31st March 2006 – First submission.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer (Senior)
Italy Italy
I am 40 years old and I've been working with C++, Visual Basic .NET, C# and ASP.NET. I have a large experience in Industrial Automation solutions, but I've worked also as Web developer and DBA. I like to share knowledge and projects with other people.

Comments and Discussions

 
GeneralMy vote of Five Pin
CNeumann214-Dec-12 1:33
CNeumann214-Dec-12 1:33 
Questionextended property grid Pin
Neil Haughton12-Nov-12 4:43
Neil Haughton12-Nov-12 4:43 
QuestionCustom Properties Not Updating Pin
PQSIK18-Oct-12 5:59
PQSIK18-Oct-12 5:59 
GeneralExcellent piece of work Pin
Daniel.Brylak10-Jul-12 0:44
Daniel.Brylak10-Jul-12 0:44 
GeneralMy vote of 5 Pin
radicalfish14-May-12 22:46
radicalfish14-May-12 22:46 
GeneralMy vote of 5 Pin
ProEnggSoft1-Mar-12 6:16
ProEnggSoft1-Mar-12 6:16 
QuestionVery Nice Pin
Mike Hankey25-Jan-12 15:07
mveMike Hankey25-Jan-12 15:07 
QuestionShow selected items, comma seperated Pin
TonBlokhuizen31-Jul-11 23:35
TonBlokhuizen31-Jul-11 23:35 
Hello,

First of all I must say very nicely done!
I've got one thing:

I've got a custom class added to the grid.
In the 2nd column of the grid you will then see "(...)" or (if it is a list of objects) "Collection".

What I want to do is show One property of each class in the collection.
For example:

my class has got some properties:Name,LastName,Address etc.

If I add a collection of this class to the grid, containing a number of "persons" let's say I added 3 persons, i would like to see something like this:

[Persons] [Name_1,Name_2,Name_3] [...]

hope you can help.
GeneralDocComment Height Pin
Shaka9134-Apr-11 1:38
Shaka9134-Apr-11 1:38 
GeneralChild Nodes Pin
malcomm14-Dec-10 16:23
malcomm14-Dec-10 16:23 
GeneralIssues with saving color properties Pin
malcomm13-Dec-10 15:14
malcomm13-Dec-10 15:14 
QuestionOrdering categories in non-alphabetical order? Pin
Brazilian.Engineer6-Oct-10 6:45
Brazilian.Engineer6-Oct-10 6:45 
QuestionAbility to control sort order of Categories in PropertyGridEx ??? Pin
Brazilian.Engineer1-Oct-10 15:30
Brazilian.Engineer1-Oct-10 15:30 
QuestionEnable Enter or Tab Key to move to the next item? Pin
BrianGoodheim26-Sep-10 10:49
BrianGoodheim26-Sep-10 10:49 
Questionis it possible to disable auto-sort? Pin
mryux20051-Sep-10 21:16
mryux20051-Sep-10 21:16 
AnswerRe: is it possible to disable auto-sort? Pin
dusan.fedorcak7-Sep-10 3:53
dusan.fedorcak7-Sep-10 3:53 
Generalmulti selection drop down box Pin
Member 228177124-Aug-10 10:53
Member 228177124-Aug-10 10:53 
GeneralQuestion about nesting. Pin
Troy Lundin12-Apr-10 10:52
Troy Lundin12-Apr-10 10:52 
GeneralNeither example nor base control will build in VS 2005 Pin
sysop@HAL9K.com15-Mar-10 8:32
sysop@HAL9K.com15-Mar-10 8:32 
GeneralNice Work Pin
Xavius19-Feb-10 4:19
Xavius19-Feb-10 4:19 
QuestionDrag-drop text onto PropertyGridEx Pin
BrianGoodheim5-Jan-10 4:41
BrianGoodheim5-Jan-10 4:41 
QuestionTradeoff between PropertyGridEx1 setup overhead and memory overhead: Best practice design? Pin
BrianGoodheim11-Nov-09 6:37
BrianGoodheim11-Nov-09 6:37 
GeneralGettingProperties Pin
yura19894-Nov-09 2:31
yura19894-Nov-09 2:31 
QuestionHow do you serialize color? Pin
Bill SerGio, The Infomercial King11-Oct-09 13:39
Bill SerGio, The Infomercial King11-Oct-09 13:39 
GeneralTag value from dropdown GridIdem Pin
gnunez9728-Sep-09 10:04
gnunez9728-Sep-09 10:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.