wpf-devexpress-dot-xpf-dot-bars-dot-toolbarcontrolbase-91b5380a.md
Gets whether the current tool bar is a standalone control or contained in a bar container.
Namespace : DevExpress.Xpf.Bars
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public bool IsStandalone { get; protected set; }
Public Property IsStandalone As Boolean
| Type | Description |
|---|---|
| Boolean |
true, if the current tool bar is a standalone control; otherwise, false.
|
The ToolBarControlBase descendants can be placed in a BarContainerControl. This allows tool bars to be arranged next to each other and be moved between containers using the drag-and-drop operation. However, for the ToolBarControlBase descendants, it is not necessary for them to be contained in a BarContainerControl, they can also be used as standalone controls. If the current ToolBarControlBase descendant is contained in a BarContainerControl, the IsStandalone property returns false ; otherwise this property returns true.
See Also