Skip to main content
Bar

BarManager.StatusBar Property

Gets or sets the status bar for the current form.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.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