BarItem Class
Represents the base class for bar items.
Namespace: DevExpress.Xpf.Bars
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
public abstract class BarItem :
FrameworkContentElement,
IBarItem,
IBarManagerControllerAction,
IControllerAction,
INotifyPropertyChanged,
IMultipleElementRegistratorSupport,
IBarNameScopeSupport,
IInputElement,
ICommandSourceServiceSupport,
ICommandSource,
IBarHistoryListItemRecord
Related API Members
The following members return BarItem objects:
Remarks
All elements displayed by Bars, Ribbon and Menus are represented by bar items and bar item links.
Bar items are buttons, sub-menus, static text, editors, and other elements. They can be added directly to toolbars (ToolBarControl, MainMenuControl, StatusBarControl and Bar objects), sub-menus (BarSubItem), popup menus (PopupMenu and RadialContextMenu) and the RibbonControl.
<Window
...
xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars">
<dxb:ToolBarControl VerticalAlignment="Top">
<dxb:BarButtonItem Content="Cut"/>
<dxb:BarButtonItem Content="Copy"/>
<dxb:BarButtonItem Content="Paste"/>
</dxb:ToolBarControl>
</Window>
Refer to the Items and Links topic for more information.
Implements
Inheritance
See Also