Skip to main content
All docs
V25.1
  • RibbonPage.ContentBorderStyle Property

    Gets or sets a style applied to the RibbonPage’s contents. This is a dependency property.

    Namespace: DevExpress.Xpf.Ribbon

    Assembly: DevExpress.Xpf.Ribbon.v25.1.dll

    NuGet Package: DevExpress.Wpf.Ribbon

    Declaration

    public Style ContentBorderStyle { get; set; }

    Property Value

    Type Description
    Style

    A Style object applied to the RibbonPage’s contents.

    Remarks

    The following code sample specifies the RibbonPageGroup content’s Background, CornerRadius, Margin, and Padding properties:

    <dx:ThemedWindow ...
      xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon" 
      xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core">
      <dxr:RibbonControl>
        <dxr:RibbonDefaultPageCategory>
          <dxr:RibbonPage Caption="Home" >
            <dxr:RibbonPage.ContentBorderStyle>
              <Style TargetType="Border">
                <Setter Property="Background" Value="PaleGreen"/>
                <Setter Property="CornerRadius" Value="10,10,0,0"/>
                <Setter Property="Margin" Value="0,10,0,0"/>
                <Setter Property="Padding" Value="10"/>
              </Style>
            </dxr:RibbonPage.ContentBorderStyle>
            <!-- ...   -->
          </dxr:RibbonPage>
        </dxr:RibbonDefaultPageCategory>
      </dxr:RibbonControl>
    </dx:ThemedWindow>
    

    RibbonPageGroup - Standard Properties

    See Also