Skip to main content

RibbonForm.RibbonAlwaysAtBack Property

Gets or sets whether a RibbonControl within this RibbonForm always lays underneath all other components.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(true)]
[DXCategory("Behavior")]
public bool RibbonAlwaysAtBack { get; set; }

Property Value

Type Default Description
Boolean true

true if a RibbonControl within this RibbonForm always lays underneath all other components; otherwise, false.

Remarks

The control’s Z-index depends on the order in which these controls are dropped onto the form. The RibbonAlwaysAtBack property changes the RibbonControl‘s Z-order and places it underneath all other components and controls, whether or not the Ribbon was dropped before these controls. This behavior is enabled by default. You can set the RibbonAlwaysAtBack property to false, if the Ribbon Control can overlap the form content. Due to possible layout issues, do not modify this property unless you are sure you want to enable form content to be displayed under the RibbonControl.

See Also