DataGrid.RowHeaderTemplate Property

Definition

Gets or set the template for the row headers.

public:
 property System::Windows::DataTemplate ^ RowHeaderTemplate { System::Windows::DataTemplate ^ get(); void set(System::Windows::DataTemplate ^ value); };
public System.Windows.DataTemplate RowHeaderTemplate { get; set; }
member this.RowHeaderTemplate : System.Windows.DataTemplate with get, set
Public Property RowHeaderTemplate As DataTemplate

Property Value

The template for the row headers. The registered default is null. For more information about what can influence the value, see DependencyProperty.

Remarks

The RowHeaderTemplate property defines the ContentTemplate for the DataGridRowHeader. The RowHeaderTemplate does not inherit the data context from the DataGrid. To set the row header content to display values based on the row data, bind to the Content property of the DataGridRowHeader by using the RowHeaderStyle property. For more information, see RowHeaderStyle.

Applies to