GroupDefinition
Class
Provides information about a group of PropertyDefinition.
Definition
Namespace:Telerik.Windows.Controls.Data.PropertyGrid
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
C#
public class GroupDefinition : DependencyObject, INotifyPropertyChanged
Inheritance: objectGroupDefinition
Implements:
Constructors
Initializes a new instance of the GroupDefinition class.
C#
public GroupDefinition(object key, bool isExpanded, IEnumerable<PropertyDefinition> elements)
The key.
isExpandedboolThe group's expanded state.
elementsIEnumerable<PropertyDefinition>The elements.
Initializes a new instance of the GroupDefinition class.
C#
public GroupDefinition(object key, IEnumerable<PropertyDefinition> elements)
The key.
elementsIEnumerable<PropertyDefinition>The elements.
Properties
Gets or sets the DisplayName of the group.
C#
public string DisplayName { get; set; }
The display name.
Gets the elements of the group.
C#
public IEnumerable<PropertyDefinition> Elements { get; }
The elements.
GroupContainerStyle
Style
Gets or sets the group button style.
C#
public Style GroupContainerStyle { get; set; }
The group button style.
Gets or sets a value that indicates whether the group is expanded.
C#
public bool IsExpanded { get; set; }
The is expanded.
Gets or sets the OrderIndex of the group.
C#
public int OrderIndex { get; set; }
The index of the order.
Methods
Raises the PropertyChanged event.
Events
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: