Back to Devexpress

BarItemLinkControlProperties Class

wpf-devexpress-dot-xpf-dot-bars-427ebf08.md

latest4.2 KB
Original Source

BarItemLinkControlProperties Class

A set of properties that describe the BarItem’s visual states.

Namespace : DevExpress.Xpf.Bars

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public class BarItemLinkControlProperties
vb
Public Class BarItemLinkControlProperties

Remarks

You can use Style and ItemTrigger classes to change an item’s properties depending on the item’s state. Use the BarItemLinkControlProperties class to get the element’s state.

Styles

The following code sample uses the Style class to change the BarButtonItem‘s Glyph property when the mouse pointer is over the element:

xaml
<Window ...
  xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars"
  xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon">
  <Window.Resources>
    <Style x:Key="OpenItemStyle" TargetType="{x:Type dxb:BarButtonItem}">
      <Setter Property="Glyph" Value="Open.svg"/>
      <Style.Triggers>
        <Trigger Property="dxb:BarItemLinkControlProperties.IsMouseOver" Value="True">
          <Setter Property="Glyph" Value="Open2.svg"/>
        </Trigger>
      </Style.Triggers>
    </Style>
  </Window.Resources>
  <StackPanel>
    <dxr:RibbonControl Margin="20">
      <dxr:RibbonPage>
        <dxr:RibbonPageGroup>
          <dxb:BarButtonItem Style="{StaticResource OpenItemStyle}"/>
        </dxr:RibbonPageGroup>
      </dxr:RibbonPage>
    </dxr:RibbonControl>
  </StackPanel>
</Window>

Item Triggers

Use the ItemTrigger class in the following cases:

The following code sample uses the BarItem.Triggers attached property to change the BarItemLink‘s Glyph property when the mouse pointer is over the element:

xaml
<Window ..
  xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars"
  xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon">
  <StackPanel>
    <dxr:RibbonControl Margin="20">
      <dxr:RibbonControl.ToolbarItems>
        <dxb:BarItemLink BarItemName="BarItem1"/>
      </dxr:RibbonControl.ToolbarItems>
      <dxr:RibbonPage>
        <dxr:RibbonPageGroup>
          <dxb:BarButtonItem x:Name="BarItem1" Glyph="Open.svg" Content="Open">
            <dxb:BarButtonItem.Triggers>
              <dxb:ItemTrigger Property="IsMouseOver" Value="True">
                <dxb:ItemSetter Property="Glyph" Value="Open2.svg"/>
              </dxb:ItemTrigger>
            </dxb:BarButtonItem.Triggers>
          </dxb:BarButtonItem>
        </dxr:RibbonPageGroup>
      </dxr:RibbonPage>
    </dxr:RibbonControl>
  </StackPanel>
</Window>

Inheritance

Object BarItemLinkControlProperties

See Also

BarItemLinkControlProperties Members

DevExpress.Xpf.Bars Namespace