Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Badge.BorderBrush Property

Gets or sets the brush used to paint the borders of the BadgeControl. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public Brush BorderBrush { get; set; }

#Property Value

Type Description
Brush

A Brush value.

#Remarks

The following code sample disables the border’s background (the Badge.BadgeKind property), displays a 1 pixel badge border (the Badge.BorderThickness property), and sets the border color to red (the Badge.BorderBrush property):

WPF Badges - Color Properties

<dx:SimpleButton ...>
  <dx:Badge.Badge>
    <dx:Badge Content="10" BadgeKind="None" 
    BorderThickness="1" BorderBrush="Red" />
  </dx:Badge.Badge>
</dx:SimpleButton>
See Also