wpf-devexpress-dot-xpf-dot-core-dot-badge-cedd601b.md
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
public CornerRadius? CornerRadius { get; set; }
Public Property CornerRadius As CornerRadius?
| Type | Description |
|---|---|
| Nullable<CornerRadius> |
A Nullable CornerRadius value that specifies the Badge ‘s corner radius.
|
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:
<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 :
<dx:SimpleButton ...>
<dx:Badge.Badge>
<dx:Badge Content="10" CornerRadius="5,5,5,0" />
</dx:Badge.Badge>
</dx:SimpleButton>
See Also