Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ThemedWindow.ToolbarItemTemplate Property

Gets or sets a template applied to the current ThemedWindow‘s toolbar items. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public DataTemplate ToolbarItemTemplate { get; set; }

#Property Value

Type Description
DataTemplate

A DataTemplate object applied to the current ThemedWindow’s toolbar items.

#Remarks

The template assigned to the ToolbarItemTemplate property is applied to items stored within the ThemedWindow.ToolbarItems collection. To utilize multiple toolbar item templates that switch based on custom logic, assign the required template selector to the ThemedWindow.ToolbarItemTemplateSelector property.

Note

The ToolbarrItemTemplate property applies to all objects except UIElements objects.

The following code sample shows how to add ThemedWindow Toolbar Items and change its’ ToolbarItemTemplate:

<dx:ThemedWindow
...
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core">
<dx:ThemedWindow.ToolbarItemsSource>
    <dx:ThemedWindowHeaderItemsCollection>
        <system:String>First</system:String>
        <system:String>Second</system:String>
        <system:String>Third</system:String>
        <Button Content="SimpleButton"/>
    </dx:ThemedWindowHeaderItemsCollection>
</dx:ThemedWindow.ToolbarItemsSource>

<dx:ThemedWindow.ToolbarItemTemplate>
  <DataTemplate>
    <Border Margin="1" Background="Blue">
      <TextBlock Margin="5" Foreground="White" Text="{Binding}"/>
    </Border>
  </DataTemplate>
</dx:ThemedWindow.ToolbarItemTemplate>
</dx:ThemedWindow>

The image below illustrates the result:

Note

In this code snippet, the ToolbarItemTemplate property applies to all objects except the Button control.

ThemedWindow - Toolbar Items Template

See Also