Skip to main content
All docs
V25.1
  • Badge.BadgeShape Property

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

    Namespace: DevExpress.Xpf.Core

    Assembly: DevExpress.Xpf.Core.v25.1.dll

    NuGet Package: 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:Badge.Badge>
        <dx:Badge Content="10" BadgeShape="Rectangle" />
      </dx:Badge.Badge>
    </dx:SimpleButton>
    
    See Also