Click here to Skip to main content
6,595,444 members and growing! (14,772 online)
Email Password   helpLost your password?
Desktop Development » Miscellaneous » General     Intermediate

Changing the look and feel of the propertygrid

By seesharper

Make the propertygrid control look like the one provided in the VS 2005 IDE
C#, Windows, .NET, Visual Studio, Dev
Posted:11 May 2006
Views:48,819
Bookmarked:46 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
18 votes for this article.
Popularity: 4.50 Rating: 3.59 out of 5
3 votes, 16.7%
1
3 votes, 16.7%
2
1 vote, 5.6%
3
4 votes, 22.2%
4
7 votes, 38.9%
5

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

public class CustomPropertyGrid : PropertyGrid

{

public CustomPropertyGrid()

{

[BLOCKQUOTE dir=ltr style=MARGIN-RIGHT: 0px">

this.ToolStripRenderer = new ToolStripProfessionalRenderer(new CustomColorTable());

[/B>

}

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


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

Occupation: Web Developer
Location: Norway Norway

Other popular Miscellaneous articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 14 of 14 (Total in Forum: 14) (Refresh)FirstPrevNext
GeneralMy vote of 2 PinmemberV# Guy17:17 3 Feb '09  
QuestionHow can I attach event to CustomCollectionEditor? Pinmemberconnectpalm1:16 20 Dec '07  
QuestionHow I can make it? [modified] Pinmemberagorby3:00 30 Oct '07  
AnswerRe: How I can make it? PinmemberGuillaume Leparmentier5:22 30 Nov '07  
GeneralRe: How I can make it? Pinmemberagorby5:56 30 Nov '07  
GeneralAlmost! Pinmemberthany.org5:32 7 Sep '07  
GeneralReadOnly Collection Pinmemberkembo6:38 11 Jun '07  
GeneralRe: ReadOnly Collection PinmemberGuillaume Leparmentier5:26 30 Nov '07  
GeneralExample does not use CustomCollectionEditor PinmemberSteveC2:04 1 May '07  
GeneralNice Pinmemberchris1758:51 16 Jan '07  
QuestionCool -- Is it OK to use VS2005Components? PinmemberStephen Lamb20:20 14 Sep '06  
AnswerRe: Cool -- Is it OK to use VS2005Components? Pinmemberseesharper13:01 28 Sep '06  
GeneralVery good. Now Could you? PinmemberPink Floyd7:45 22 May '06  
GeneralThanx! PinmemberNice Life0:12 16 May '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 11 May 2006
Editor:
Copyright 2006 by seesharper
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project