DashboardControlBase.TitleCustomizationsTemplate Property
Allows you to add, remove or modify command buttons and create drop-down menus in the dashboard title.
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 containing bar actions. |
Remarks
The following XAML snippet adds a drop-down button with three items to the dashboard title.
<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.TitleCustomizationsTemplate>
<DataTemplate>
<ItemsControl>
<dxb:InsertAction ContainerName="{x:Static dxdasht:DefaultBarItemNames.DashboardTitle_Toolbar}">
<dxb:InsertAction.Element>
<dxb:BarSubItem AllowGlyphTheming="True" Content="My Title Item">
<dxb:BarButtonItem Content="Item1" />
<dxb:BarButtonItem Content="Item2" />
<dxb:BarButtonItem Content="Item3" />
</dxb:BarSubItem>
</dxb:InsertAction.Element>
</dxb:InsertAction>
</ItemsControl>
</DataTemplate>
</dxdash:DashboardControl.TitleCustomizationsTemplate>
</dxdash:DashboardControl>
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the TitleCustomizationsTemplate 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.