Skip to main content

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

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