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

BarManager.StatusBar Property

Gets or sets the status bar for the current form.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(null)]
[DXCategory("Behavior")]
public virtual Bar StatusBar { get; set; }

#Property Value

Type Default Description
Bar null

A Bar object representing the status bar.

#Remarks

Assign a particular bar to the StatusBar property to make it a status bar. Such a bar automatically acquires specific properties:

  • The bar is always docked to the bottom edge of the form and it cannot be floating;
  • Drag and drop is disabled for the bar;
  • The quick customization button is disabled for the bar (see the BarOptions.AllowQuickCustomization property);
  • The bar fills the entire row provided by the container (form) (see the BarOptions.UseWholeRow property).

There can be only one status bar on the form.

See Also