5,442,164 members and growing! (19,529 online)
Email Password   helpLost your password?
Languages » C# » How To     Intermediate

Filtering properties in a PropertyGrid

By bsargos

This articles describes some easy ways to filter the properties displayed in a Microsoft PropertyGrid.
C#, Windows, .NET, Visual Studio, Dev

Posted: 7 Mar 2006
Updated: 27 Mar 2006
Views: 37,857
Bookmarked: 45 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
14 votes for this Article.
Popularity: 5.36 Rating: 4.68 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
2 votes, 14.3%
3
2 votes, 14.3%
4
10 votes, 71.4%
5

Sample Image - FilteredPropertyGrid.jpg

Introduction

The wonderful PropertyGrid control, provided by Microsoft, is a very useful component for editing settings or parameters in your application. You can easily let the user customize any object at runtime. When you pass an object to the SelectedObject property of a PropertyDataGrid, the PropertyDataGrid will display all the properties of your object that has the BrowsableAttribute set to true. It is both very simple and efficient.

But sometimes, you only want to expose just some properties, not all of them. Suppose you want to allow the user of your application to edit the appearance of your main form. How would you do that ? In fact, this can be done very easily. Microsoft thought about this matter and gave us a very interesting property, named BrowsableAttributes. In this article, we'll first see how this property works, and how we can use it. Next, we'll see how it is not sufficient for most cases, and introduce a new approach, using inheritance.

BrowsableAttributes: the easy but insufficient way

With the PropertyGrid.BrowsableAttributes, you can choose to display only the properties that have the attributes contained in AttributeCollection. Suppose you want to only show the properties that are grouped in the "Appearance" category.

// You first create the attribute

// you want to filter with :

Attribute myfilterattribute = 
     new CategoryAttribute("Appearance");
// And you pass it to the PropertyGrid,

// via its BrowsableAttributes property :

mypropertygrid.BrowsableAttributes = new 
   AttributeCollection(new Attribute[] 
   { myfilterattribute });

You can choose several attributes, and of any sort:

mypropertygrid.BrowsableAttributes = 
  new AttributeCollection(new Attribute[] {
    new CategoryAttribute("Appearance"),
    new CategoryAttribute("Layout"),
    new DisplayNameAttribute("zzzz"),
    new BrowsableAttribute(false)
  });

Note that by default, all the browsable attributes are displayed. In other words, if you let the BrowsableAttributes empty, you'll display all the properties of the SelectedObject that have the BrowsableAttribute set to true.

This is simple and works fine. But how can we just filter by properties? Unfortunately, the PropertyGrid doesn't provide a BrowsableProperties. If you want to display a selection of properties, you have to write some code ... or read the paragraph below.

Inheritance for selected properties: the FilteredPropertyGrid

Now, we'll discuss about another problem. Suppose your SelectedObject is a TextBox, and you want to display in a PropertyGrid only the "Size" property of your TextBox. As the PropertyGrid control is, it is not possible. If you read what is written in the previous section, you may imagine passing to the PropertyGrid.BrowsableAttributes property a collection of attributes like "PropertyNameAttribute". But unfortunately, such attributes don't exist.

I propose another approach: using a wrapper object that contains the object you want to display in the PropertyGrid. This wrapper will be passed to the PropertyGrid, instead of the object itself. So, the PropertyGrid will not directly display the object's properties, but the wrapper's ones. In this case, you need to subclass the PropertyGrid with a new control that overrides the SelectedObject property. That's exactly what I did, while writing the FilteredPropertyGrid control. This control is inherited from PropertyGrid and works the same way. I just added these useful properties:

  • BrowsableAttributes: overridden from PropertyGrid.
  • HiddenAttributes: all the properties that have the attributes contained in the collection are hidden.
  • BrowsableProperties: all the properties contained in the collection are displayed.
  • HiddenProperties: all the properties contained in the collection are not displayed.

Here's how you can use it. To display only the "Size" property of your TextBox, write these lines of code:

// Create the TextBox.

TextBox mycontrol = new TextBox();
// Create the inherited PropertyGrid.

FilteredPropertyGrid mygrid = new FilteredPropertyGrid();
// Set the only property visible.

mygrid.BrowsableProperties = new string[] { "Size" };
// Attach the control to the PropertyGrid.

mygrid.SelectedObject = mycontrol;
// Force the PropertyGrid to redraw itself

mygrid.Refresh();

That's all! You can combine these four properties as you wish. Suppose you want to display all the categories, except the "Accessibility" and "Layout" ones. But you want the "AccessibilityRole" property, and not the "DataBinidngs" one. Write this code:

mygrid.HiddenPAttributes = 
   new AttibuteCollection(new Attribute[] {
       new CategoryAttribute("Accessibility"),
       new CategoryAttribute("Layout") });
mygrid.HiddenProperties = new string[] { "DataBinidngs" };
mygrid.BrowsableProperties = 
   new string[] { "AccessibilityRole" }

Note: these properties only work with SelectedObject. There is no warranty of them working with SelectedObjects.

How does it work?

Well, I will just describe the big pants of the FilteredPropertyGrid. For more information, you can download the source code above. When one of these four properties changes, the private method FilteredPropertyGrid.RefreshProperties() is called and builds a list containing all the PropertyDescriptors of the properties to display. This collection is passed to a wrapper, and the wrapper is linked to the PropertyGrid:

public class FilteredPropertyGrid : PropertyGrid
{
    private List<PropertyDescriptor> 
            m_PropertyDescriptors  = 
            new List<PropertyDescriptor>();
    private ObjectWrapper m_Wrapper = null;
    
    ( ... )

    public new object SelectedObject {
    get { return m_Wrapper != null ? 
          ((ObjectWrapper)
          base.SelectedObject).SelectedObject : 
          null; }
        set {
            if(m_Wrapper == null) {
                m_Wrapper = new ObjectWrapper(value);
                m_Wrapper.PropertyDescriptors = 
                         m_PropertyDescriptors;
                RefreshProperties();
            } else {
                // Link the wrapper to the parent PropertyGrid.

                base.SelectedObject = m_Wrapper;
            }
        }
    }
    
    ( ... )
}

The RefreshProperties() method strongly uses the TypeDescriptor class and its GetProperties() method, to get the properties of the SelectedObject and build the list.

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

bsargos



Occupation: Web Developer
Location: France France

Other popular C# articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 28 (Total in Forum: 28) (Refresh)FirstPrevNext
Subject  Author Date 
Questionhow about SelectedObjectsmemberseanzcan16:46 12 May '08  
GeneralGood Reserchmembermanas0:36 11 Dec '07  
GeneralSmall Bug fixedmemberHasson816:31 27 Aug '07  
GeneralTabbing from Item To ItemmembertheMouse10:25 13 Jul '07  
QuestionDataBindings dropdown selection only shows "None"memberPeter Findt0:00 1 Jul '07  
GeneralDo not use BrowsableAttributes?!membersahami11:41 18 Jun '07  
GeneralThank youmemberruben ruvalcaba14:59 8 May '07  
GeneralWhat about expandable properties, dynamic components?memberwcoenen6:47 27 Feb '07  
GeneralRe: Need a sample implementation of the samememberjackie_198419:43 6 Aug '07  
GeneralRe: Need a sample implementation of the samememberconnectpalm3:01 29 Feb '08  
GeneralGreat Article [modified]memberTodd Wilder18:38 28 Aug '06  
Questiondisplay property in PropertyGridmemberpoonam_iitr13:13 25 Jul '06  
GeneralICustomTypeDescriptormembervisualhint6:24 2 May '06  
GeneralRe: ICustomTypeDescriptormemberphilippe dykmans6:47 8 Jun '08  
GeneralRe: ICustomTypeDescriptormembervisualhint7:13 8 Jun '08  
GeneralRe: ICustomTypeDescriptormemberphilippe dykmans8:40 9 Jun '08  
GeneralRe: ICustomTypeDescriptormembervisualhint9:08 9 Jun '08  
GeneralCan't get more than one category to display!membersaidrad00721:52 31 Mar '06  
GeneralRe: Can't get more than one category to display!membersuamikim23:39 4 Apr '06  
Generalproblem with your demomembernexo5470011:24 25 Mar '06  
GeneralRe: problem with your demomemberbsargos10:00 26 Mar '06  
QuestionRe: problem with your demomembernexo5470022:22 28 Mar '06  
AnswerRe: problem with your demomemberJoeSimons12:21 30 Jun '06  
GeneralRe: problem with your demomemberparisvb6:32 7 Apr '06  
GeneralThank youmembertonyt14:46 7 Mar '06  

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

PermaLink | Privacy | Terms of Use
Last Updated: 27 Mar 2006
Editor: Smitha Vijayan
Copyright 2006 by bsargos
Everything else Copyright © CodeProject, 1999-2008
Web13 | Advertise on the Code Project