Click here to Skip to main content
Licence CPOL
First Posted 29 Jan 2006
Views 87,867
Bookmarked 50 times

Context menu for the custom properties in the C# PropertyGrid

By | 29 Jan 2006 | Article
Context menu for the custom properties in the C# PropertyGrid, allowing the user to reset the properties, the same way as in Visual Studio.

There is another window inside:

There is another window inside

Changing the name also, not only the value:

Changing the name also, not only the value

Introduction

I came to a point where I needed to allow the user to reset the values in the property grid, the same way Visual Studio does (using a context menu when right clicking on the property). This is useful for some reasons:

  • You don't have to remember the old value of the property. The controls does it all for you.
  • The control displays the modified properties using bold, so it's easy to see which properties have been modified.

Background

After searching a great deal on the internet, I still didn't find anything. Then it occurred to me to use the same old friend, the Spy++ tool that comes with Visual Studio. Then I noticed there is another window inside what we think is the property grid. That other window does all the impressive work that makes the property grid so famous.

Since there is no direct way to get our hands on that window, I had to go brute force on it:

propertyGrid1.GetChildAtPoint( new Point(40,40) )

Now, I had the window. All I had to do was to get my hands on the messages the window receives and look for messages that indicate a right click inside.

This is done by adding a filter to all the messages in the application's loop and looking for the messages addressed to our window:

Application.AddMessageFilter( new PropertyGridMessageFilter( 
        propertyGrid1.GetChildAtPoint( new Point(40,40) ), 
        new MouseEventHandler( propGridView_MouseUp )) );

Since doing this in the OnLoad event handler failed (Object reference not set to an instance of an object), I now do it in a timer event handler that lets the entire GUI to instantiate:

private void timerLoad_Tick(object sender, System.EventArgs e)
{
    timerLoad.Stop();

    // this fails if called directly in OnLoad
    // since the control didn't finish creating itself: 
    Application.AddMessageFilter( 
        new PropertyGridMessageFilter( 
            propertyGrid1.GetChildAtPoint( new Point(40,40) ),
        new MouseEventHandler( propGridView_MouseUp )) );
}

The filter looks for WM_?BUTTONUP messages and makes a call to a provided delegate:

public bool PreFilterMessage(ref Message m)
{
    if( ! this.Control.IsDisposed && m.HWnd == 
          this.Control.Handle && MouseUp != null)
    {
        MouseButtons mb = MouseButtons.None;
        
        switch( m.Msg )
        {
            case  0x0202 : /*WM_LBUTTONUP, see winuser.h*/
                mb = MouseButtons.Left;
                break;
            case  0x0205 : /*WM_RBUTTONUP*/
                mb = MouseButtons.Right;
                break;
        }

        if( mb != MouseButtons.None )
        {
            MouseEventArgs e = 
            new MouseEventArgs( mb, 1, m.LParam.ToInt32() & 0xFFff, 
                                m.LParam.ToInt32() >> 16, 0 );
        
            MouseUp( Control, e );
        }
    }
    return false;
}

When the form's method is called by the filter, I just get the propertyGrid1.SelectedGridItem.PropertyDescriptor and display the context menu containing the Reset and ChangeName options.

Here you can see the Reset option displaying the default value so the user has the new and the default value next to each other:

reset

What if the user wants to rename the property itself

First, the program displays an on-site textbox for the user to alter the property name in:

/// <SUMMARY>
/// This is a special feature to allow renaming of the property itself
/// </SUMMARY>
private void menuItemChangeName_Click(object sender, System.EventArgs e)
{
    GenericPropertyDescriptor gpd = 
        propertyGrid1.SelectedGridItem.PropertyDescriptor 
        as GenericPropertyDescriptor;
    if( gpd != null )
    {
        TextBox t = new TextBox();

        t.Text = gpd.Property.PropertyName;
        // so we know what property is about 
        t.Tag = gpd;
        // to capture Enter & Escape 
        t.KeyUp += new KeyEventHandler(textbox_name_KeyUp);
        // to allow hidding of the textbox
        // by clicking somewhere else: 
        t.MouseUp += new MouseEventHandler(textbox_name_MouseUp); 
        // i want all the mouse messages
        // to be sent to the textbox 
        t.Capture = true;

        // placing the textbox in the form,
        // right under the mouse: 
        Point mp = MousePosition; mp.Offset( -3, -3 );
        t.Location = PointToClient( mp );
        Controls.Add( t );
        t.BringToFront();
        t.Focus();

        // clears the initial selection of the text 
        t.Select( t.Text.Length, 0 );
        
        // making the control obvious to the user: 
        t.BackColor = Color.Yellow;
        t.ForeColor = Color.Red;
    }
}

Once the textbox is on the screen, the content can be validated by pressing Enter, or discarded by pressing Escape:

private void textbox_name_KeyUp(object sender, KeyEventArgs e)
{
    switch( e.KeyData )
    {
        case Keys.Enter:
        {// keep the changes: 
            TextBox t = sender as TextBox;
            ( (GenericPropertyDescriptor) 
               t.Tag ).Property.PropertyName = t.Text != "" ? 
               t.Text : "must type something or" + 
               " the control will go berserk" ;

            RemoveTextBox( sender );

            // refresh the grid since it can't
            // possibly know we changed something: 
            propertyGrid1.Refresh(); 
        }break;

        case Keys.Escape:
        {// just "go home" 
            RemoveTextBox( sender );
        }break;
    }
}

Using the code

The properties are stored in a collection that implements ICustomTypeDescriptor (this has been explained in many articles, I'm not explaining it again here). This collection returns the custom properties when asked by the property grid (propertyGrid1.SelectedObject = properties;). Adding properties to this collection is quite easy:

properties = new GenericPropertyCollection_CustomTypeDescriptor();
properties.AddProperty( new GenericProperty( "Integer", 
                       (int) 1, "Custom", "Int32" ) );
properties.AddProperty( new GenericProperty( "Float disabled", 
                        4.5f, "Custom", "Single", 
                        new ReadOnlyAttributeEditor() ) );

Making one of the properties read only (disabled) is also easy, just tag-it with the ReadOnlyAttributeEditor.

The collection can be used as storage for the data, there is no need for a parallel structure. Accessing the data can be done like this:

foreach( GenericProperty gp in properties )
    MessageBox.Show( gp.Value.ToString() );

Points of Interest

Many things can be done by accessing the insides of the operating system or common controls. Platform Invoke and filtering of messages can be used to create new, helpful, and original effects.

I find interesting the on-site editing of the property name, using the small textbox that disappears when the user is done with it. It's something like the Undo control in Visual Studio that is placed over all the controls (toolbars, edit window).

History

  • January 29th, 2006 - first version.

License

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

About the Author

Mihai Maerean

Software Developer (Senior)

Romania Romania

Member

Areas Of Expertise:


APIs:

.Net Framework
MFC
Win32
 
ActiveX (documents, controls, automation)
 
Graphics:

DirectX
OpenGL
 
Databases:

SQL Server
ADO
Odbc
 
Web Applications:

AJAX
ASP.Net
Web Services
ActiveX controls
 
Programming Languages:

C/C++
C#
Pascal
Basic
Python
Javascript
XHTML
 
Proud to have been part of the following team(s):

Project Viewer - Housatonic

Silent Hunter 4 - Ubisoft Romania
 
Personal web site (programing C++ C# ASP.NET, CV, jokes, games)
 
RedGoblin - boardgames store (a project i'm working on)
 





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 to change backcolor or textcolor of a single cell (GridItem / property) in the .NET PropertyGrid? [modified] PinmemberRobTheRealX23:56 16 Aug '09  
QuestionHi, do you know how to get the display text of a GridItem which is not selected? Pinmembersinbao2:29 1 Dec '07  
GeneralTimer is not necessary Pinmemberlizaxs7:54 17 Oct '07  
AnswerRe: Timer is not necessary PinmemberMihai Maerean8:21 17 Oct '07  
QuestionHow to do multi row select on property grid PinmemberAlias8813:50 21 Dec '06  
AnswerRe: How to do multi row select on property grid PinmemberMihai Maerean18:36 21 Dec '06  
GeneralRe: How to do multi row select on property grid PinmemberAlias8819:20 21 Dec '06  
Generalquestion about the artical Pinmemberroey frid21:14 1 Aug '06  
AnswerRe: question about the artical PinmemberMihai Maerean19:59 3 Aug '06  
Generalquestion about the article Pinmemberroey frid5:32 24 Jul '06  
QuestionRe: question about the article PinmemberMihai Maerean9:35 26 Jul '06  
AnswerRe: question about the article Pinmemberroey frid19:19 26 Jul '06  
AnswerRe: question about the article PinmemberMihai Maerean23:22 26 Jul '06  
GeneralRe: question about the article Pinmemberroey frid21:09 1 Aug '06  
Generalpropertygrid custom properties question Pinmemberroey frid22:22 18 Jul '06  
AnswerRe: propertygrid custom properties question PinmemberMihai Maerean23:07 18 Jul '06  
GeneralRe: propertygrid custom properties question Pinmemberroey frid23:31 18 Jul '06  
AnswerRe: propertygrid custom properties question PinmemberMihai Maerean0:06 19 Jul '06  
GeneralRe: propertygrid custom properties question Pinmemberroey frid0:24 19 Jul '06  
GeneralGetting the window handle and setting the context menu PinmemberTutu12:54 31 Jan '06  
GeneralRe: Getting the window handle and setting the context menu PinmemberMihai Maerean17:00 31 Jan '06  
GeneralRe: Getting the window handle and setting the context menu Pinmemberipjohnson1237:54 21 Jun '07  
GeneralRe: Getting the window handle and setting the context menu PinmemberRobTheRealX0:15 17 Aug '09  
GeneralRe: Getting the window handle and setting the context menu PinmemberMihai Maerean1:54 17 Aug '09  
QuestionHow to avoid timer for Application.AddMessageFilter( ) PinmemberKelraad23:36 30 Jan '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
Web04 | 2.5.120517.1 | Last Updated 29 Jan 2006
Article Copyright 2006 by Mihai Maerean
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid