Skip to main content
Bar

ToolBarControlBase.IsStandalone Property

Gets whether the current tool bar is a standalone control or contained in a bar container.

Namespace: DevExpress.Xpf.Bars

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public bool IsStandalone { get; protected set; }

Property Value

Type Description
Boolean

true, if the current tool bar is a standalone control; otherwise, false.

Remarks

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