windowsforms-devexpress-dot-xtralayout-dot-optionsview-fc746b84.md
Gets or sets how the Layout Control interacts with a Rounded Skin Panel container in the WXI skin.
Namespace : DevExpress.XtraLayout
Assembly : DevExpress.XtraLayout.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(RoundedPanelIntegrationMode.Adaptive)]
public RoundedPanelIntegrationMode RoundedPanelIntegrationMode { get; set; }
<DefaultValue(RoundedPanelIntegrationMode.Adaptive)>
Public Property RoundedPanelIntegrationMode As RoundedPanelIntegrationMode
| Type | Default | Description |
|---|---|---|
| RoundedPanelIntegrationMode | Adaptive |
A value that specifies whether the Layout Control automatically adapts its padding within a RoundedSkinPanel container.
|
Available values:
| Name | Description |
|---|---|
| Adaptive |
The Layout Control disables its padding. The RoundedSkinPanel hides its border.
| | Manual |
The LayoutControl applies its default padding. The RoundedSkinPanel displays its border.
|
You can access this nested property as listed below:
| Object Type | Path to RoundedPanelIntegrationMode |
|---|---|
| LayoutControl |
.OptionsView .RoundedPanelIntegrationMode
|
In the WXI skin, the RoundedPanelIntegrationMode property specifies how the Layout Control interacts with a RoundedSkinPanel container:
Adaptive (Default)
The Layout Control disables its padding. The RoundedSkinPanel hides its border.
layoutControl1.OptionsView.RoundedPanelIntegrationMode = DevExpress.XtraLayout.RoundedPanelIntegrationMode.Adaptive;
Manual
The LayoutControl applies its default padding. The RoundedSkinPanel displays its border. Use this mode to manually control layout appearance.
layoutControl1.OptionsView.RoundedPanelIntegrationMode = DevExpress.XtraLayout.RoundedPanelIntegrationMode.Manual;
See Also