Badge.BadgeKind Property
Gets or sets the BadgeControl‘s kind. This is a dependency property.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
BadgeKind | Information | A BadgeKind enumeration value. |
Available values:
Name | Description |
---|---|
Success | Specifies a success badge. |
Warning | Specifies a warning badge. |
Error | Specifies an error badge. |
Information | Specifies an information badge. |
None | Specifies a badge with a transparent background. |
Remarks
The BadgeKind is the predefined set of the Badge.Foreground, Badge.Background, Badge.BorderBrush, and Badge.BorderThickness property values. You can override the BadgeKind with any of the these properties.
The following code sample creates the error badge:
<dx:SimpleButton ...>
<dx:Badges.Badge>
<dx:Badge Content="10" BadgeKind="Error" />
</dx:Badges.Badge>
</dx:SimpleButton>
Tip
Refer to the Customize the Appearance section to get more information on the Badge’s appearance properties.