Skip to main content
A newer version of this page is available. .

DashboardLayoutGroup.CaptionCustomizationsTemplate Property

Allows you to specify a custom caption template for the DashboardItemGroup item.

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Xpf.Dashboard.v18.2.dll

Declaration

public DataTemplate CaptionCustomizationsTemplate { get; set; }

Property Value

Type Description
DataTemplate

A object that specifies the data template used to render the dashboard group item caption.

Remarks

The following XAML snippet adds a check button to the dashboard group caption.

Note

The complete sample project How to add custom buttons and menu elements to dashboard item captions is available in the DevExpress Examples repository.

<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.ItemGroupStyle>
        <Style TargetType="{x:Type dxdash:DashboardLayoutGroup}">
          <Setter Property="CaptionCustomizationsTemplate">
            <Setter.Value>
              <DataTemplate>
                <ItemsControl>
                  <dxb:InsertAction ContainerName="{x:Static dxdasht:DefaultBarItemNames.DashboardItemCaption_Toolbar}">
                    <dxb:InsertAction.Element>
                      <dxb:BarCheckItem AllowGlyphTheming="True" Content="My Check Button" />
                    </dxb:InsertAction.Element>
                  </dxb:InsertAction>
                </ItemsControl>
              </DataTemplate>
            </Setter.Value>
          </Setter>
      </dxdash:DashboardControl.ItemGroupStyle>

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.

See Also