Skip to main content
All docs
V25.1
  • 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 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.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to RoundedPanelIntegrationMode
    LayoutControl
    .OptionsView .RoundedPanelIntegrationMode

    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.

    Rounded Panel Integration Mode - Adaptive

    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.

    Rounded Panel Integration Mode - Manual

    layoutControl1.OptionsView.RoundedPanelIntegrationMode = DevExpress.XtraLayout.RoundedPanelIntegrationMode.Manual;
    
    See Also