Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / MFC
Article

A fully customizable PropertyGrid

Rate me:
Please Sign up or sign in to vote.
4.90/5 (53 votes)
24 May 2007CPOL5 min read 233.5K   12.4K   129   88
A grid to display and edit properties of objects (as in Visual Studio)

Screenshot - PropertyGrid.jpg

Introduction

This article implements a fully customizable property grid as can be seen in the above screenshots. The grid supports various types of items: strings, combos, file pickers... It also supports fully customizable items that can define how they are drawn, how the user interacts with them and their behavior when edited.

Background

As developers, we are now all used to the Properties Window of Visual Studio and this article is an implementation of this. It does not support the help area and although the control supports different types of display (categorized, alphabetical...) standard buttons for this are not provided.

Using the code

The sample application provided shows almost all that can be done with the control. You are therefore encouraged to parse the source code to learn about the control!

First we have placed a dummy control in our dialog (in our case a Picture Control) and overridden the type of the control in the header file to be a CPropertyGrid. In the OnInitDialog of the dialog, we initialize the controls using various methods:

  • AddSection: used to add a group of properties (see "Basic Items" of the screenshot)
  • AddXXXItem: used to add items to a section (see below for the various items types)
  • SetXXXStrings: used to localize the standard dialogs used by the CPropertyGrid (see below)

Basically, if the only thing we want to do is to display standard properties, then we are done!

Standard item types

As said previously, the control supports different items, so here is a quick description of those types:

  • AddStringItem: a simple single line string item. The string can be edited in-place
  • AddTextItem: a multiline string item. When edited, CPropertyGrid dynamically generates a dialog allowing the user to enter the text
  • AddIntegerItem: an integer value item. An optional formatting mask can be provided
  • AddDoubleItem: a floating point value item. An optional formatting mask can be provided
  • AddComboItem: an item allowing to choose among a set of values. The possible values are passed as a vector<string>
  • AddBoolItem: a boolean value item which behaves like a Combo Item. True and False texts can be set using SetTrueFalseStrings
  • AddDateItem: a date value item chosen using a CMonthCalCtrl derived control.
  • AddDateTimeItem: a date and time value set using a dynamically generated dialog
  • AddFileItem: an item allowing to choose a file using a standard CFileDialog. A filter list can be provided
  • AddFolderItem: an item allowing to choose a folder using a "standard" directory picker dialog
  • AddColorItem: an item allowing to choose a color using a standard CColorDialog
  • AddFontItem: an item allowing to choose a color using a standard CFontDialog

Custom items

CPropertyGrid also supports full custom items. To implement a custom item, simply create a new class and make it derive from ICustomItem and implement the various methods of this interface. Then create an instance of your class and add it the grid control using AddCustomItem. Two methods of ICustomItem are purely virtual and must be overridden:

  • GetEditMode: tells the grid what kind of interaction your control is using when editing the value. The sample application shows four custom items that implement the various edit modes.
  • DrawItem: override this to draw your custom item. This can be as simple as calling DrawText on the provided CDC.

Next, depending on the edit mode, you may override more methods to customize your item. To better understand how this works it is recommended to check the various custom items implemented in the sample application: CSerialItem for in-place editing, CRectItem for modal editing, CTreeItem for dropdown editing and CGradientItem for a full custom item.

  • In-place edited items should override GetStringForInPlaceEdit (to tell the grid the string that should be edited) and OnItemEdited (return false to discard the edit)
  • Dropdown custom items should override ShowDropDown and show their dropdown control here
  • Modal custom items should override OnEditItem and show their modal dialog here
  • Custom edit mode items should override OnLButtonDown, OnMouseMove and OnLButtonUp to implement their mouse events specific handling

Display customization

Rendering of the grid can also be customized using various methods:

  • Title shading: control if you want to have a different background color for section headers
  • Draw lines: control if you want to display horizontal grid lines or not
  • Gutter: control if you want to display the vertical line between property names and values. You can also control the width of the gutter
  • Focus disabled: control if you want disabled items to be selectable or not
  • Colors: use the various SetXXXColor methods to change the colors used to draw the grid

Value editing

You can use the GetItemValue and SetItemValue overloads to get the value of a specific item. The HITEM expected is one returned when you called AddXXXItem when initializing your control. Make sure you call the good overload when calling this function: obviously you cannot get double from date item and you cannot set a LOGFONT in a text item. That's why all these functions return a boolean value indicating if things went well or not.

Points of Interest

I must warn you that this is some code that I wrote a while back and that has not changed much since. I always wanted to put this one on Codeproject but obviously did not find time to do it. Now it's done!

I only provided project files for Visual Studio 2005 but I see no reason as to why the code should not work with 2003 or even 6.0. Maybe some minor adjustments should be done but it should not be a big issue.

I am using two other articles available on codeproject.com:

Conclusion

This was a fun control to write especially supporting full custom items. My description of the control does not cover all aspects of the control and I encourage you to review its header file to discover things that I have not taken the time to talk about. Nevertheless, I hope that this short article let you see all the possibilities of the control!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionPropertyGridCombo is a CBS_DROPDOWNLIST but if i want a CBS_DROPDOWN ? Pin
fauconnet20-Apr-22 22:48
fauconnet20-Apr-22 22:48 
QuestionCollapse section problem in Win Xp style Pin
Member 1066716912-Sep-16 0:41
Member 1066716912-Sep-16 0:41 
QuestionHow to enumerate all sections and items? Pin
Member 106671698-Aug-16 1:20
Member 106671698-Aug-16 1:20 
Questionis there anybody to use this source code in VS2013? Pin
Member 117513409-Aug-15 3:30
Member 117513409-Aug-15 3:30 
is there anybody to use this source code in VS2013?(I used UNICODE version in comment list.)

i couldn't use that in VS2013. please please send me source code whoever.

Thanks.

bexpert30@gmail.com
Generali wonder Pin
Member 464780015-Sep-14 17:07
Member 464780015-Sep-14 17:07 
Questionchild of child Pin
hujik27-Feb-14 21:38
hujik27-Feb-14 21:38 
GeneralPossible improvements Pin
Siddharth Hegde25-Jan-13 3:37
Siddharth Hegde25-Jan-13 3:37 
GeneralRe: Possible improvements Pin
hujik27-Feb-14 21:27
hujik27-Feb-14 21:27 
QuestionSubItems Pin
jung-kreidler7-Sep-11 22:10
jung-kreidler7-Sep-11 22:10 
GeneralCombobox not created Pin
MichaelTR27-Jun-11 4:00
MichaelTR27-Jun-11 4:00 
GeneralRe: Combobox not created Pin
Blowfleecy7-Sep-11 15:56
Blowfleecy7-Sep-11 15:56 
GeneralMy vote of 4 Pin
Jalpa M23-Feb-11 23:39
Jalpa M23-Feb-11 23:39 
GeneralMy vote of 5 Pin
paladin_t16-Aug-10 21:23
paladin_t16-Aug-10 21:23 
GeneralFree Memory Read in CPropertyGridInPlaceEdit::EndEdit Pin
Mark Potter11-May-10 5:23
Mark Potter11-May-10 5:23 
GeneralRe: Free Memory Read in CPropertyGridInPlaceEdit::EndEdit Pin
Mark Potter11-May-10 5:34
Mark Potter11-May-10 5:34 
GeneralParent window shouldn't be deactivated Pin
iceway18-Oct-09 20:54
iceway18-Oct-09 20:54 
GeneralUnified Unicode/ANSI version Pin
Duncan Mackay11-Jun-09 19:22
Duncan Mackay11-Jun-09 19:22 
QuestionVB.NET or C# version? Pin
JeffThePeff16-Apr-09 4:33
JeffThePeff16-Apr-09 4:33 
QuestionHow to use without dialog box Pin
iznet25-Feb-09 12:25
iznet25-Feb-09 12:25 
AnswerRe: How to use without dialog box Pin
Nicolas Bonamy25-Feb-09 19:47
Nicolas Bonamy25-Feb-09 19:47 
GeneralRe: How to use without dialog box Pin
iznet26-Feb-09 10:11
iznet26-Feb-09 10:11 
QuestionShow some special characters like [ \t ]? Pin
bosfan4-Dec-08 5:30
bosfan4-Dec-08 5:30 
QuestionGet pointer to combo item?? Pin
bosfan3-Dec-08 5:33
bosfan3-Dec-08 5:33 
GeneralIf more then one combo box selection problem! Pin
bosfan26-Nov-08 1:14
bosfan26-Nov-08 1:14 
GeneralRe: If more then one combo box selection problem! Pin
Nicolas Bonamy26-Nov-08 5:29
Nicolas Bonamy26-Nov-08 5:29 

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.