Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Badge.CornerRadius Property

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

Namespace: DevExpress.Xpf.Core

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

NuGet Package: DevExpress.Wpf.Core

#Declaration

public CornerRadius? CornerRadius { get; set; }

#Property Value

Type Description
Nullable<CornerRadius>

A Nullable CornerRadius value that specifies the Badge‘s corner radius.

#Remarks

This property can have one or four values. The four values for each radius are given in the top-left, top-right, bottom-right, bottom-left order.

Note

When the CornerRadius property is not Null, the Badge ignores the Badge.BadgeShape property.

The following code sample sets the CornerRadius property to 5:

WPF Badges - CornerRadius is 5

<dx:SimpleButton ...>
  <dx:Badge.Badge>
    <dx:Badge Content="10" CornerRadius="5" />
  </dx:Badge.Badge>
</dx:SimpleButton>

The following code sample sets the radius of the top-left/top-right/bottom-right corners to 5 and the bottom-left corner to 0:

WPF Badges - CornerRadius is 5,5,5,0

<dx:SimpleButton ...>
  <dx:Badge.Badge>
    <dx:Badge Content="10" CornerRadius="5,5,5,0" />
  </dx:Badge.Badge>
</dx:SimpleButton>
See Also