windowsforms-devexpress-dot-xtraeditors-dot-xtraform-25e32328.md
Gets or sets whether an MDI bar is allowed for this form. This property is in effect for a parent MDI form, when the title bar skinning feature is enabled.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[DefaultValue(false)]
[DXCategory("Behavior")]
public virtual bool AllowMdiBar { get; set; }
<DefaultValue(False)>
<DXCategory("Behavior")>
Public Overridable Property AllowMdiBar As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if the MDI bar is allowed; otherwise, false.
|
An MDI bar provides the control buttons and menu allowing an end-user to close, restore, minimize and switch between child MDI forms.
The AllowMdiBar property controls the visibility of an MDI bar when the following conditions are met:
If you’re using a BarManager or RibbonForm within the parent MDI XtraForm, there is no need to enable the AllowMdiBar option, as these components provide their own MDI bars.
See Also