RibbonControlBase.HeaderItemTemplate Property
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
Property Value
Type | Description |
---|---|
DataTemplate | A DataTemplate object that represents the ribbon tab header template. |
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