Skip to main content
A newer version of this page is available. .

RibbonButtonStyleSettings.NormalBorderBrush Property

Gets or sets a ribbon button’s normal state border brush. This is a dependency property.

Namespace: DevExpress.WinUI.Ribbon

Assembly: DevExpress.WinUI.Ribbon.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "OnContentChanged")]
public Brush NormalBorderBrush { get; set; }

Property Value

Type Description
Brush

A brush that describes the normal ribbon button’s border.

Remarks

You can use this property to customize the appearance of the following ribbon buttons:

The following code sample specifies the NormalBorderBrush, BorderThickness, and CornerRadius appearance properties:

<Window ...
    xmlns:dxr="using:DevExpress.WinUI.Ribbon"
    xmlns:dxc="using:DevExpress.WinUI.Core">
      <Grid>
          <dxr:RibbonControl>
              <dxr:RibbonControl.Tabs>
                  <dxr:RibbonTab Caption="Home">
                      <dxr:RibbonGroup Caption="File">
                          <dxr:RibbonButton Content="Open">
                              <dxr:RibbonButton.LargeIcon>
                                  <dxc:DXSymbolIconSource Symbol="OpenFile" />
                              </dxr:RibbonButton.LargeIcon>
                              <dxr:RibbonButton.StyleSettings>
                                  <dxr:RibbonButtonStyleSettings BorderThickness="2" 
                                                                 NormalBorderBrush="AntiqueWhite" 
                                                                 CornerRadius="5"/>
                              </dxr:RibbonButton.StyleSettings>
                          </dxr:RibbonButton>
                      </dxr:RibbonGroup>
                  </dxr:RibbonTab>
              </dxr:RibbonControl.Tabs>
          </dxr:RibbonControl>
    </Grid>
</Window>

Ribbon Button - BorderThickness Property

See Also