Click here to Skip to main content
Licence 
First Posted 11 May 2006
Views 65,636
Bookmarked 53 times

Changing the look and feel of the propertygrid

By | 11 May 2006 | Article
Make the propertygrid control look like the one provided in the VS 2005 IDE

Introduction

Download sourcecode

Download demo project

One of my favorite controls shipped with .Net, is the property grid. It is extremely powerful, but raises a few challenges when it comes to customizing it.

I recently finished an application that used the propertygrid to manage a rather complex configuration.

Using the propertygrid along with XML serialization is a very simple, yet effective way to implement complex configuration scenarios.

Just as the application was set to be kicked out the door, I noticed that my property grid did not look as cool as the one in the Visual Studio IDE.

So I spent I few hours trying to get it right.

First of all is the little toolbar at the top displaying icons for sorting and so on.

Why can't I have that nice gradient toolbar in my propertygrid?

Another thing I noticed was that there was no way to make the collection editor display the property description at the bottom as the the propertygrid do.

And the last thing I wanted to fix was the Toolstrip. I wanted that one to have the VS2005 look as well

I wanted to have something like this.

Sample screenshot

Changing the colors

As for the colors used on the propertygrid toolbar and the toolstrip, the solution was really simple. As I thought maybe I had to do my own painting, all I did was replacing the colortable used by the control's renderer.

Like this

<FONT color=#0000ff size=2><P>public</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>class</FONT><FONT size=2> </FONT><FONT color=#008080 size=2>CustomPropertyGrid</FONT><FONT size=2> : </FONT><FONT color=#008080 size=2>PropertyGrid</P></FONT><FONT size=2><P>{</P><BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"><P></FONT><FONT color=#0000ff size=2>public</FONT><FONT size=2> CustomPropertyGrid()</P><P>{ </P><BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"><P></FONT><FONT color=#0000ff size=2>this</FONT><FONT size=2>.ToolStripRenderer = </FONT><FONT color=#0000ff size=2>new</FONT><FONT size=2> </FONT><FONT color=#008080 size=2>ToolStripProfessionalRenderer</FONT><FONT size=2>(</FONT><FONT color=#0000ff size=2>new</FONT><FONT size=2> </FONT><FONT color=#008080 size=2>CustomColorTable</FONT><FONT size=2>());</P></BLOCKQUOTE><P>} </P></BLOCKQUOTE><P>}</P></FONT>

The Custom Colortable is inherited from the ToolStripProfessionalRenderer and just overrides
the properties describing the colors used in each element of the ex Toolstrip.

Displaying the property description in the collection editor.

This is how the collection editor is displayed when used "out of the box"

Sample screenshot

This is the result after doing some tweaks

Sample screenshot

The code

The solution to this problem was to do a little reflection to get a reference to the collection editor's form and propertygrid.

protected override CollectionForm CreateCollectionForm()
        {

            //Get a reference top new collection form
            CollectionEditor.CollectionForm form = base.CreateCollectionForm();
            
            //Center the form 
            form.StartPosition = FormStartPosition.CenterParent;
         
            //Get the forms type
            Type formType = form.GetType();

            //Get a reference to the private fieldtype propertyBrowser
            //This is the propertgrid inside the collectionform
            FieldInfo fieldInfo = formType.GetField("propertyBrowser", BindingFlags.NonPublic | BindingFlags.Instance);

            if (fieldInfo != null)
            {

                //get a reference to the propertygrid instance located on the form
                PropertyGrid propertyGrid = (PropertyGrid)fieldInfo.GetValue(form);
                
                if (propertyGrid != null)
                {

                    //Make the tool bar visible
                    propertyGrid.ToolbarVisible = true;

                    //Make the help/description visible
                    propertyGrid.HelpVisible = true;

                    //Get the property grid's type.
                    //Note that this is a vsPropertyGrid located in System.Windows.Forms.Design
                    Type propertyGridType = propertyGrid.GetType();

                    //Get a reference to the non-public property ToolStripRenderer
                    PropertyInfo propertyInfo = propertyGridType.GetProperty("ToolStripRenderer",BindingFlags.NonPublic | BindingFlags.Instance);
                    
                    if (propertyInfo != null)
                    {
                        //Assign a ToolStripProfessionalRenderer with our custom color table
                        propertyInfo.SetValue(propertyGrid,new ToolStripProfessionalRenderer(new CustomColorTable()),null);
                    }
                }
            }

            //Return the form
            return form;
        }

As you may notice the custom renderer is also applied to the collection editor's propertygrid.

Using the custom collection editor

        [Editor(typeof(CustomCollectionEditor), typeof(System.Drawing.Design.UITypeEditor))]
        public List<Employee> Employees
        {
            get { return mEmployees; }
            set { mEmployees = value; }
        } 

 Now my application looks like it should and everybody is happy, including me.

 

 

 

 

 

 

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

seesharper

Software Developer

Norway Norway

Member

I'm a 39 year old software developer living in Norway.
I'm currently working for a software company making software for the retail industry.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHow can I attach event to CustomCollectionEditor? Pinmemberconnectpalm0:16 20 Dec '07  
Firstly, Thanks for the excellent input of using reflection to custonmize the collectioneditor.
In one of the threads, as you have already given the details on how to get the add and remove button. I use the same and would like to take it a step further where I can attach events to the add, remove, ok and cancel buttons.
I was able to add them with out any problems.
 
//...
public event EventHandler OnCollectionAddButtonClicked;
 
//....
// the add button
FieldInfo addButtonInfo = formType.GetField("addButton", BindingFlags.NonPublic | BindingFlags.Instance);
if (null != addButtonInfo)
{
Button addButton = (Button)addButtonInfo.GetValue(form);
addButton.Enabled = this.EnableAddButton;
addButton.Click += new EventHandler(this.CollectionAddButton_Clicked);
}
 
//...
private void CollectionAddButton_Clicked(Object sender, EventArgs e)
{
if (this.OnCollectionAddButtonClicked != null )
this.OnCollectionAddButtonClicked.Invoke(sender, e);
}
 
So far so good. I use this editor in the example given by you
[Editor(typeof(CustomCollectionEditor), typeof(System.Drawing.Design.UITypeEditor))]
public List&lt;Employee&gt; Employees
{
get { return mEmployees; }
set { mEmployees = value; }
}
 
But how can I attach the event handler such that I receive the event when the user has added an employee?? something like
CustomCollectionEditor editor = new CustomCollectionEditor(System.Drawing.Design.UITypeEditor);
editor.OnCollectionAddButtonClicked += new EventHandler(this.OnEmployeeAdded);
 
[Editor(typeof(editor), typeof(System.Drawing.Design.UITypeEditor))]
public List&amp;lt;Employee&amp;gt; Employees
{
get { return mEmployees; }
set { mEmployees = value; }
}
 
But this doesn't work, i am now stuck at this last place??
any help is highly appreciated.
thanks in advance
Vishnu

QuestionHow I can make it? [modified] Pinmemberagorby2:00 30 Oct '07  
AnswerRe: How I can make it? PinmemberGuillaume Leparmentier4:22 30 Nov '07  
GeneralRe: How I can make it? Pinmemberagorby4:56 30 Nov '07  
GeneralAlmost! Pinmemberthany.org4:32 7 Sep '07  
GeneralReadOnly Collection Pinmemberkembo5:38 11 Jun '07  
GeneralRe: ReadOnly Collection PinmemberGuillaume Leparmentier4:26 30 Nov '07  
GeneralExample does not use CustomCollectionEditor PinmemberSteveC1:04 1 May '07  
GeneralNice Pinmemberchris1757:51 16 Jan '07  
QuestionCool -- Is it OK to use VS2005Components? PinmemberStephen Lamb19:20 14 Sep '06  
AnswerRe: Cool -- Is it OK to use VS2005Components? Pinmemberseesharper12:01 28 Sep '06  
QuestionVery good. Now Could you? PinmemberPink Floyd6:45 22 May '06  
GeneralThanx! PinmemberNice Life23:12 15 May '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 11 May 2006
Article Copyright 2006 by seesharper
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid