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

Badge.BadgeShape Property

Gets or sets the BadgeControl‘s shape. This is a dependency property.

Namespace: DevExpress.Xpf.Core

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public BadgeShape? BadgeShape { get; set; }

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:

WPF Badges - BadgeShape Property

<dx:SimpleButton ...>
  <dx:Badges.Badge>
    <dx:Badge Content="10" BadgeShape="Rectangle" />
  </dx:Badges.Badge>
</dx:SimpleButton>
See Also