OptionsView.RoundedPanelIntegrationMode Property
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.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(RoundedPanelIntegrationMode.Adaptive)]
public RoundedPanelIntegrationMode RoundedPanelIntegrationMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
RoundedPanelIntegrationMode | Adaptive | A value that specifies whether the Layout Control automatically adapts its padding within a |
Available values:
Name | Description |
---|---|
Adaptive | The Layout Control disables its padding. The |
Manual | The LayoutControl applies its default padding. The |
Property Paths
You can access this nested property as listed below:
Object Type | Path to RoundedPanelIntegrationMode |
---|---|
LayoutControl |
|
Remarks
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;