ThemedWindow.HeaderItemTemplate Property
Gets or sets a template applied to the current ThemedWindow‘s header items. This is a dependency property.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
public DataTemplate HeaderItemTemplate { get; set; }
#Property Value
Type | Description |
---|---|
Data |
A Data |
#Remarks
The template assigned to the HeaderItemTemplate property is applied to items stored within the ThemedWindow.HeaderItems collection. To utilize multiple header item templates that switch based on custom logic, assign the required template selector to the ThemedWindow.HeaderItemTemplateSelector property.
Note
The Header
The following code sample shows how to add ThemedWindow Header Items and change its’ HeaderItemTemplate:
<dx:ThemedWindow
...
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core">
<dx:ThemedWindow.HeaderItemsSource>
<dx:ThemedWindowHeaderItemsCollection>
<system:String>First</system:String>
<system:String>Second</system:String>
<system:String>Third</system:String>
<Button Content="SimpleButton"/>
</dx:ThemedWindowHeaderItemsCollection>
</dx:ThemedWindow.HeaderItemsSource>
<dx:ThemedWindow.HeaderItemTemplate>
<DataTemplate>
<Border Margin="1" Background="Blue">
<TextBlock Margin="5" Foreground="White" Text="{Binding}"/>
</Border>
</DataTemplate>
</dx:ThemedWindow.HeaderItemTemplate>
</dx:ThemedWindow>
The image below illustrates the result:
Note
In this code snippet, the Header