Back to Devexpress

Badge.CornerRadius Property

wpf-devexpress-dot-xpf-dot-core-dot-badge-cedd601b.md

latest2.3 KB
Original Source

Badge.CornerRadius Property

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

Namespace : DevExpress.Xpf.Core

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public CornerRadius? CornerRadius { get; set; }
vb
Public Property CornerRadius As CornerRadius?

Property Value

TypeDescription
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:

xaml
<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 :

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

See Also

Badge Class

Badge Members

DevExpress.Xpf.Core Namespace