GridView::ColumnHeaderTemplate Property
Gets or sets a template to use to display the column headers.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: property DataTemplate^ ColumnHeaderTemplate { DataTemplate^ get(); void set(DataTemplate^ value); }
Property Value
Type: System.Windows::DataTemplate^The DataTemplate to use to display the column headers as part of the GridView. The default value is null.
If the ColumnHeaderTemplate property and the ColumnHeaderTemplateSelector property are both set, the ColumnHeaderTemplate property takes precedence.
This property represents one of several ways to lay out and style column headers. For more information, see GridView Column Header Styles and Templates Overview.
<object ColumnHeaderTemplate="{ResourceExtension TemplateResourceKey}"/>
- ResourceExtension
One of the following: StaticResource, or DynamicResource. See XAML Resources.
- TemplateResourceKey
The key that identifies the template being requested. The key refers to an existing resource in a ResourceDictionary.
Note |
|---|
Property element syntax is technically possible, but not recommended. See Inline Styles and Templates. A binding reference using or is also possible, but uncommon. |
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the ColumnHeaderTemplate property.
<DataTemplate x:Key="myHeaderTemplate"> <DockPanel> <CheckBox/> <TextBlock FontSize="16" Foreground="DarkBlue"> <TextBlock.Text> <Binding/> </TextBlock.Text> </TextBlock> </DockPanel> </DataTemplate>
<GridView ColumnHeaderTemplate="{StaticResource myHeaderTemplate}" ColumnHeaderContainerStyle="{StaticResource myHeaderStyle}"> <GridViewColumn Header="Year" Width="80" CellTemplate="{StaticResource myCellTemplateYear}"/> <GridViewColumn Header="Month" Width="80" CellTemplate="{StaticResource myCellTemplateMonth}"/> <GridViewColumn Header="Day" Width="80" CellTemplate="{StaticResource myCellTemplateDay}"/> </GridView>
Available since 3.0
