Class GridViewColumnGroup
Represents a group of columns with a common header.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewColumnGroup : DependencyObject
Constructors
GridViewColumnGroup()
Initializes a new instance of the GridViewColumnGroup class.
Declaration
public GridViewColumnGroup()
Fields
HeaderProperty
Represents the Header dependency property.
Declaration
public static readonly DependencyProperty HeaderProperty
Field Value
System.Windows.DependencyProperty
|
HeaderStyleProperty
Identifies the HeaderCellStyle dependency property.
Declaration
public static readonly DependencyProperty HeaderStyleProperty
Field Value
System.Windows.DependencyProperty
|
HeaderTemplateProperty
Identifies the HeaderTemplate property.
Declaration
public static readonly DependencyProperty HeaderTemplateProperty
Field Value
System.Windows.DependencyProperty
|
Properties
ChildGroups
Gets or sets the subgroups of a column group.
Declaration
public ObservableCollection<GridViewColumnGroup> ChildGroups { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<GridViewColumnGroup>
|
Header
Gets or sets the content to be displayed in the column group header.
Declaration
public object Header { get; set; }
Property Value
System.Object
|
HeaderStyle
Gets or sets the style to be applied for the common column header in that group.
Declaration
public Style HeaderStyle { get; set; }
Property Value
System.Windows.Style
The cell style. |
HeaderTemplate
Gets or sets the data template for the common header.
Declaration
public DataTemplate HeaderTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
Name
Gets or sets the name of the column group.
Declaration
public string Name { get; set; }
Property Value
System.String
|