Gets or sets the template of the column headers, or null (Nothing in Visual Basic), to use the default template. This is a dependency property.
Namespace: MindFusion.Scheduling.Wpf
Assembly: MindFusion.Scheduling.Wpf
SyntaxC#
Copy Code
|
|---|
public DataTemplate ColumnHeaderTemplate { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property ColumnHeaderTemplate As DataTemplate |
An instance of the WPF DataTemplate class.
RemarksThe default value of this property is the following template:
XAML
Copy Code
|
|---|
<DataTemplate> |
In addition to Text, which contains the default text displayed in the column header, the properties of the template can also bind to Value, which references the Resource or DateTime object associated with the column.
See Also