Grouping
PropertyGrid has a grouping feature, which allows you to combine properties into separate groups.
The grouping can be toggled at runtime using the Group Button or by setting the IsGrouped
property of RadPropertyGrid
.
Setting the IsGrouped property
PropertyDefinition
set its GroupName
property.
Setting up the GroupName property
xmlns:telerikControls="using:Telerik.UI.Xaml.Controls"
xmlns:propertyGrid="using:Telerik.UI.Xaml.Controls.Data.PropertyGrid"
Expand/Collapse Groups Programmatically
To expand or collapse a single group in code, use the ExpandGroup
and CollapseGroup
methods of RadPropertyGrid
.
Expand or collapse a group
ExpandAllGroups
and CollapseAllGroups
methods of RadPropertyGrid
.
Expand or collapse all groups
Auto Expand Groups
By default all groups are expanded when the PropertyGrid gets loaded. To change this, and start up the control with all groups collapsed, set the AutoExpandGroups
property ot False
.
Expand or collapse all groups

Grouped Event
The Grouped
event is raised when the property definitions get grouped.