RoundedSkinPanel.BorderVisibility Property
Gets or sets which panel borders are visible.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.Utils.v25.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
[DefaultValue(RoundedPanelBorder.All)]
[DXCategory("Appearance")]
public RoundedPanelBorder BorderVisibility { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DevExpress.XtraEditors.RoundedPanelBorder | All | A value that specifies panel border visibility. |
Remarks
Use the BorderVisibility
property to hide specific borders (bottom, left, right, top) but retain padding.
Tip
- Set the BorderStyle property to
RoundedPanelBorderStyle.NoBorder
to hide all borders but retain padding around the panel. - Set the BorderStyle property to
RoundedPanelBorderStyle.None
to hide the border and remove any padding.
See Also