RibbonControlBase.ContextualHeaderItemTemplate Property
Gets or sets a template that specifies the appearance of contextual tab item 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 header template of contextual ribbon tabs. |
Remarks
Use the ContextualHeaderItemTemplate property to specify the appearance of contextual tab item headers.
The binding source for the ContextualHeaderItemTemplate template is represented by the HeaderContainerViewModel object.
The following example demonstrates a tab header that contains a white border.
<Ribbon:RibbonControl.ContextualHeaderItemTemplate>
<DataTemplate>
<Border BorderBrush="White" BorderThickness="3">
<TextBlock Text="{Binding Container.Caption}" Margin="5" />
</Border>
</DataTemplate>
</Ribbon:RibbonControl.ContextualHeaderItemTemplate>
See Also