Simplest Usage. Badge will be hidden when count is 0, but we can use showZero to show it. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <Style x:Key="Badge" TargetType="antd:Badge">\n \t<Setter Property="Margin" Value="0 20 20 0" />\n </Style>\n <Style x:Key="HeadExample" TargetType="Rectangle">\n \t<Setter Property="Width" Value="42" />\n \t<Setter Property="Height" Value="42" />\n \t<Setter Property="RadiusX" Value="4" />\n \t<Setter Property="RadiusY" Value="4" />\n \t<Setter Property="Fill" Value="#EEEEEE" />\n </Style>\n\n <WrapPanel>\n \t<antd:Badge Style="{StaticResource Badge}" Count="5">\n \t\t<Rectangle Style="{StaticResource HeadExample}" />\n \t</antd:Badge>\n \t<antd:Badge Style="{StaticResource Badge}" Count="0" ShowZero="True">\n \t\t<Rectangle Style="{StaticResource HeadExample}" />\n \t</antd:Badge>\n </WrapPanel> `${OverflowCount}+` is displayed when count is larger than `OverflowCount`. The default value of `OverflowCount` is 99. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <Style x:Key="Badge" TargetType="antd:Badge">\n \t<Setter Property="Margin" Value="0 20 20 0" />\n </Style>\n <Style x:Key="HeadExample" TargetType="Rectangle">\n \t<Setter Property="Width" Value="42" />\n \t<Setter Property="Height" Value="42" />\n \t<Setter Property="RadiusX" Value="4" />\n \t<Setter Property="RadiusY" Value="4" />\n \t<Setter Property="Fill" Value="#EEEEEE" />\n </Style>\n\n <WrapPanel>\n \t<antd:Badge Style="{StaticResource Badge}" Count="99">\n \t\t<Rectangle Style="{StaticResource HeadExample}" />\n \t</antd:Badge>\n \t<antd:Badge Style="{StaticResource Badge}" Count="100">\n \t\t<Rectangle Style="{StaticResource HeadExample}" />\n \t</antd:Badge>\n \t<antd:Badge Style="{StaticResource Badge}" Count="99" OverflowCount="10">\n \t\t<Rectangle Style="{StaticResource HeadExample}" />\n \t</antd:Badge>\n \t<antd:Badge Style="{StaticResource Badge}" Count="1000" OverflowCount="999">\n \t\t<Rectangle Style="{StaticResource HeadExample}" />\n \t</antd:Badge>\n </WrapPanel> Standalone badge with status. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <StackPanel>\n \t<StackPanel Orientation="Horizontal" Margin="0 0 0 16">\n \t\t<antd:Badge Status="Success" />\n \t\t<antd:Badge Status="Error" />\n \t\t<antd:Badge Status="Default" />\n \t\t<antd:Badge Status="Processing" />\n \t\t<antd:Badge Status="Warning" />\n \t</StackPanel>\n \t<StackPanel>\n \t\t<antd:Badge Status="Success" Text="Success" />\n \t\t<antd:Badge Status="Error" Text="Error" />\n \t\t<antd:Badge Status="Default" Text="Default" />\n \t\t<antd:Badge Status="Processing" Text="Processing" />\n \t\t<antd:Badge Status="Warning" Text="Warning" />\n \t</StackPanel>\n </StackPanel> Used in standalone when children is empty. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel Orientation="Horizontal">\n \t<antd:Button Type="Primary" Content="Primary" />\n \t<antd:Button Content="Default" />\n \t<antd:Button Type="Dashed" Content="Dashed" />\n \t<antd:Button Type="Danger" Content="Danger" />\n </WrapPanel> This will simply display a red badge, without a specific count. If count equals 0, it won't display the dot. Link something <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel Orientation="Horizontal">\n \t<antd:Button Type="Primary" Content="Primary" />\n \t<antd:Button Content="Default" />\n \t<antd:Button Type="Dashed" Content="Dashed" />\n \t<antd:Button Type="Danger" Content="Danger" />\n </WrapPanel> The badge will display `ToolTip` when hovered over, instead of `Count`. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel Orientation="Horizontal">\n \t<antd:Button Type="Primary" Content="Primary" />\n \t<antd:Button Content="Default" />\n \t<antd:Button Type="Dashed" Content="Dashed" />\n \t<antd:Button Type="Danger" Content="Danger" />\n </WrapPanel>