New to Telerik UI for WinForms? Download free 30-day trial

ToolBar

RadPropertyGrid offers a toolbar with out of the box functionality, which appears on the top of the control. This toolbar contains predefined functions to sort the items, to group the items or to filter them by a string entered in the text box. You can enable this tool bar by setting the ToolBarVisible property to true:

Enabling the Toolbar

radPropertyGrid1.ToolbarVisible = true;

Figure 1: Toolbar

WinForms RadPropertyGrid Toolbar

You can set the predefined filter operator and property by making use of the following properties:

Customizing Default Filtering

radPropertyGrid1.PropertyGridElement.ToolbarElement.FilterOperator = FilterOperator.Contains;
radPropertyGrid1.PropertyGridElement.ToolbarElement.FilterPropertyName = "Name";

The toolbar consists of a StackLayoutPanel, which allow you to easily add additional elements or modify the existing once. You can access the existing items as follows:

Accessing Toolbar Elements

RadTextBoxElement filterTextBox = radPropertyGrid1.PropertyGridElement.ToolbarElement.SearchTextBoxElement;
RadToggleButtonElement sortButton = radPropertyGrid1.PropertyGridElement.ToolbarElement.AlphabeticalToggleButton;
RadToggleButtonElement groupButton = radPropertyGrid1.PropertyGridElement.ToolbarElement.CategorizedToggleButton;

If you want to add a new element in the toolbar, just add it to the Children collection of ToolbarElement:

Add Element to Toolbar

Figure 2: Add Element to Toolbar

WinForms RadPropertyGrid Add Element to Toolbar

RadButtonElement clearFiltering = new RadButtonElement();
clearFiltering.Text = "Clear";
clearFiltering.MinSize = new System.Drawing.Size(25, 22);
clearFiltering.StretchHorizontally = false;
radPropertyGrid1.PropertyGridElement.ToolbarElement.Children.Add(clearFiltering);
In this article