Skip to main content
All docs
V25.1
  • Badge.Badge Attached Property

    Gets or sets the BadgeControl. This is an attached property.

    Namespace: DevExpress.Xpf.Core

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

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    Returns

    Type Description
    Badge

    The badge.

    Remarks

    The following code sample displays a Badge over the Button:

    WPF Badge Kind - Information

    <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