Badge.Badge Attached Property
In This Article
Gets or sets the BadgeControl. This is an attached property.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
#Returns
Type | Description |
---|---|
Badge | The badge. |
#Remarks
The following code sample displays a Badge over the Button:
<Window x:Class="WPFApp.MainWindow"
....
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core">
<Button Content="Inbox">
<dx:Badge.Badge>
<dx:Badge Content="10"/>
</dx:Badge.Badge>
</Button>
</Window>
See Also