wpf-devexpress-dot-xpf-dot-core-dot-badge-112c61e2.md
Gets or sets the thickness of the BadgeControl‘s border. This is a dependency property.
Namespace : DevExpress.Xpf.Core
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public Thickness? BorderThickness { get; set; }
Public Property BorderThickness As Thickness?
| Type | Description |
|---|---|
| Nullable<Thickness> |
A Nullable Thickness value which specifies the badge’s border thickness in pixels.
|
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):
<dx:SimpleButton ...>
<dx:Badge.Badge>
<dx:Badge Content="10" BadgeKind="None"
BorderThickness="1" BorderBrush="Red" />
</dx:Badge.Badge>
</dx:SimpleButton>
See Also