Interface IToolBarItem
A single tool bar button in a .NET WPF tool bar.
public interface IToolBarItem
Properties
HasEllipses
Indicates whether this toolbar item's text is truncated and an ellipsis (...) is displayed.
bool HasEllipses { get; }
Property Value
Index
The 1-based index of this toolbar item. The index does not include hidden and separator buttons.
int Index { get; }
Property Value
IsChecked
Indicates whether this toggle button is set.
bool IsChecked { get; }
Property Value
IsEnabled
Indicates whether this toolbar item can accept user input.
bool IsEnabled { get; }
Property Value
IsHot
Indicates whether this toolbar item appears highlighted because the mouse pointer is hovering over it.
bool IsHot { get; }
Property Value
Name
The name of this toolbar item.
string Name { get; }
Property Value
Type
The control type of this toolbar item.
string Type { get; }