Badge.BadgeShape Property
Gets or sets the BadgeControl‘s shape. 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 |
---|---|---|
Nullable<BadgeShape> | Pill | A Nullable BadgeShape enumeration value. |
Available values:
Name | Description |
---|---|
Pill | Specifies a pill. |
Rectangle | Specifies a rectangle. |
RoundedRectangle | Specifies a rounded rectangle. |
Remarks
The following code sample creates the rectangle Badge:
<dx:SimpleButton ...>
<dx:Badges.Badge>
<dx:Badge Content="10" BadgeShape="Rectangle" />
</dx:Badges.Badge>
</dx:SimpleButton>
See Also