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.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
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:
<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