Skip to main content
Bar

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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