windowsforms-devexpress-dot-xtraeditors-dot-windowsformssettings-c447436c.md
Gets or sets whether all child MDI XtraForm and RibbonForm forms in the application should display increased borders.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
public static bool MdiFormThickBorder { get; set; }
Public Shared Property MdiFormThickBorder As Boolean
| Type | Description |
|---|---|
| Boolean |
true , to display thick borders; otherwise, false.
|
In modern flat skins like “Office 2019 Colorful”, DevExpress forms have thin borders. This may be inconvenient for users, since when they try to resize a form they have to aim for those thin borders with a mouse pointer. To improve user experience, the resize area of DevExpress forms includes both borders and form shadow\glow skin element. This allows a user to resize a form when a pointer hovers over the form shadow.
In certain cases, forms cannot display shadows.
In these cases, you can increase form borders to broaden the resize area.
To do that, enable either the WindowsFormsSettings.FormThickBorder or MdiFormThickBorder property depending on whether you want to increase borders for all DevExpress forms, or only those that serve as child MDI forms.
Use the WindowsFormsSettings.ThickBorderWidth property to change the thick borders’ width.
See Also