DashboardLayoutItem.CaptionCustomizationsTemplate Property
Allows you to specify a custom caption template for the DashboardLayoutItem descendants.
Namespace: DevExpress.DashboardWpf
Assembly: DevExpress.Xpf.Dashboard.v24.1.dll
NuGet Package: DevExpress.Wpf.Dashboard
Declaration
Property Value
Type | Description |
---|---|
DataTemplate | A DataTemplate object that specifies the data template used to render the dashboard item caption. |
Remarks
This property affects all dashboard items except item groups and items whose template is explicitly specified. That is, to override this template and specify a different template for the GridDashboardItem, set the GridItemStyle property to the style whose TargetType=”{x:Type dxdash:GridDashboardLayoutItem}”. In that style, set the CaptionCustomizationsTemplate property to a data template intended solely for the Grid dashboard items.
The following XAML snippet adds a drop-down button with three items to the dashboard item caption.
<Window
xmlns:dxdash="http://schemas.devexpress.com/winfx/2008/xaml/dashboard"
xmlns:dxdasht="http://schemas.devexpress.com/winfx/2008/xaml/dashboard/themekeys"
xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars">
<dxdash:DashboardControl>
<!-- -->
<dxdash:DashboardControl.DashboardItemStyle>
<Style TargetType="{x:Type dxdash:DashboardLayoutItem}">
<Setter Property="CaptionCustomizationsTemplate">
<Setter.Value>
<DataTemplate>
<ItemsControl>
<dxb:InsertAction ContainerName="{x:Static dxdasht:DefaultBarItemNames.DashboardItemCaption_Toolbar}">
<dxb:InsertAction.Element>
<dxb:BarSubItem AllowGlyphTheming="True" Content="My Caption Item">
<dxb:BarButtonItem Content="Item1" />
<dxb:BarButtonItem Content="Item2" />
<dxb:BarButtonItem Content="Item3" />
</dxb:BarSubItem>
</dxb:InsertAction.Element>
</dxb:InsertAction>
</ItemsControl>
</DataTemplate>
</Setter.Value>
</Setter>
</dxdash:DashboardControl.DashboardItemStyle>
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CaptionCustomizationsTemplate property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.