Click here to Skip to main content
15,868,340 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.6K   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

 
GeneralRe: AddItem( ...., after ) does not appear to work. Pin
賟當七秒的魚7-May-09 1:14
賟當七秒的魚7-May-09 1:14 
GeneralRe: AddItem( ...., after ) does not appear to work. Pin
Mark Potter8-May-09 2:30
Mark Potter8-May-09 2:30 
QuestionLicense? [modified] Pin
Mark Potter30-Apr-08 8:07
Mark Potter30-Apr-08 8:07 
AnswerRe: License? Pin
Nicolas Bonamy2-May-08 3:30
Nicolas Bonamy2-May-08 3:30 
GeneralRe: License? Pin
Mark Potter2-May-08 6:09
Mark Potter2-May-08 6:09 
GeneralDLL Import Pin
E! Ray K23-Apr-08 8:36
E! Ray K23-Apr-08 8:36 
NewsUNICODE version uploaded Pin
Tomas125-Mar-08 10:35
Tomas125-Mar-08 10:35 
GeneralRe: UNICODE version uploaded Pin
Damir Valiulin16-May-08 18:27
Damir Valiulin16-May-08 18:27 
GeneralRe: UNICODE version uploaded Pin
Tomas117-May-08 10:35
Tomas117-May-08 10:35 
Hi!
The Obliviate's unicode version kept the original non-unicode string-to-number conversion functions. It resulted in incorrect conversion, shortening input numbers to the first digit only (as the wide characters consist of two bytes, where the second one is normally zero, it was misinterpreted as a terminating zero of a plain ASCII char string). I replaced these functions by their wide char equivalent.

Tomas
GeneralRe: UNICODE version uploaded Pin
Damir Valiulin18-May-08 5:08
Damir Valiulin18-May-08 5:08 
GeneralRe: UNICODE version uploaded - small bug Pin
Razmar18-Sep-08 13:57
Razmar18-Sep-08 13:57 
GeneralRe: UNICODE version uploaded - small bug Pin
賟當七秒的魚6-May-09 23:23
賟當七秒的魚6-May-09 23:23 
GeneralRe: UNICODE version uploaded [modified] Pin
賟當七秒的魚6-May-09 18:44
賟當七秒的魚6-May-09 18:44 
GeneralRe: UNICODE version uploaded Pin
Member 128824771-Dec-16 21:10
Member 128824771-Dec-16 21:10 
QuestionC# code for Customizable PropertyGrid :: Current Article Pin
Virat Kothari18-Nov-07 20:51
Virat Kothari18-Nov-07 20:51 
GeneralRe: C# code for Customizable PropertyGrid :: Current Article Pin
xb zhang17-Dec-07 21:13
xb zhang17-Dec-07 21:13 
AnswerRe: C# code for Customizable PropertyGrid :: Current Article Pin
Virat Kothari18-Dec-07 19:04
Virat Kothari18-Dec-07 19:04 
GeneralRe: C# code for Customizable PropertyGrid :: Current Article Pin
E! Ray K23-Apr-08 8:38
E! Ray K23-Apr-08 8:38 
GeneralAdd CheckBox item support. Pin
Kindy Chen20-Sep-07 18:23
Kindy Chen20-Sep-07 18:23 
GeneralBugs Report [modified] Pin
Kindy Chen19-Sep-07 17:05
Kindy Chen19-Sep-07 17:05 
GeneralRe: Bugs Report Pin
Damir Valiulin16-May-08 18:14
Damir Valiulin16-May-08 18:14 
GeneralCongratulations Pin
jupeyology9-Sep-07 16:57
jupeyology9-Sep-07 16:57 
Generalgood job!!! (maybe AddListItem) Pin
eagle5127-Aug-07 22:58
eagle5127-Aug-07 22:58 
QuestionGreat class! but Unicode version? Pin
mas_per11-Jul-07 7:54
mas_per11-Jul-07 7:54 
AnswerRe: Great class! but Unicode version? [modified] Pin
obliviate13-Jul-07 3:04
obliviate13-Jul-07 3: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.