RibbonControlBase.HeaderItemTemplate Property
In This Article
Gets or sets a template that defines the presentation of ribbon tab headers. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Ribbon
Assembly: DevExpress.UI.Xaml.Ribbon.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
#Declaration
public DataTemplate HeaderItemTemplate { get; set; }
#Property Value
Type | Description |
---|---|
Data |
A Data |
#Remarks
Use the HeaderItemTemplate property to specify the appearance of tab item headers.
The binding source for the HeaderItemTemplate template is represented by the HeaderContainerViewModel object.
The following example demonstrates a tab header that contains a white border.
<Ribbon:RibbonControl.HeaderItemTemplate>
<DataTemplate>
<Border BorderBrush="White" BorderThickness="3">
<TextBlock Text="{Binding Container.Caption}" Margin="5" />
</Border>
</DataTemplate>
</Ribbon:RibbonControl.HeaderItemTemplate>
See Also