Usage of basic Tag, and it could be closable by set `Closable` property. Closable Tag support `Closed` event. Tag 1 Link Tag 2 Prevent Default <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel>\n \t<antd:Tag>Tag 1</antd:Tag>\n \t<antd:Tag>Link</antd:Tag>\n \t<antd:Tag Closable="True">Tag 2</antd:Tag>\n \t<antd:Tag Closable="True" cal:Message.Attach="[Event Closing] = [Action Closing($source, $eventArgs)]">Prevent Default</antd:Tag>\n </WrapPanel> Select your favourite topics. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel>\n \t<TextBlock Text="Categories:" FontSize="10" VerticalAlignment="Center" Margin="0 0 8 0" />\n \t<WrapPanel VerticalAlignment="Center">\n \t\t<antd:CheckableTag Content="Movies" />\n \t\t<antd:CheckableTag Content="Books" />\n \t\t<antd:CheckableTag Content="Music" />\n \t\t<antd:CheckableTag Content="Sports" />\n \t</WrapPanel>\n </WrapPanel> Colorful Tag can be easily implemented by setting the `ColorMode` property. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <StackPanel>\n \t<Label Style="{StaticResource Ant.H4}" Content="Colorful:" />\n \t<WrapPanel>\n \t\t<antd:Tag Foreground="#EB2F96" Content="magenta" ColorMode="Colorful" Closable="True" />\n \t\t<antd:Tag Foreground="#F5222D" Content="red" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#FA541C" Content="volcano" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#FA8C16" Content="orange" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#FAAD14" Content="Gold" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#A0D911" Content="lime" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#52C41A" Content="green" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#13C2C2" Content="cyan" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#1890FF" Content="blue" ColorMode="Colorful" />\n \t\t<antd:Tag Foreground="#2F54EB" Content="purple" ColorMode="Colorful" />\n \t</WrapPanel>\n \t<Label Style="{StaticResource Ant.H4}" Content="Inverse:" />\n \t<WrapPanel>\n \t\t<antd:Tag Background="#FF5500" Content="#FF5500" ColorMode="Inverse" Closable="True" />\n \t\t<antd:Tag Background="#2DB7F5" Content="#2DB7F5" ColorMode="Inverse" />\n \t\t<antd:Tag Background="#87d068" Content="#87d068" ColorMode="Inverse" />\n \t\t<antd:Tag Background="#108EE9" Content="#108EE9" ColorMode="Inverse" />\n \t</WrapPanel>\n </StackPanel> `CheckableTag` works like Checkbox, click it to toggle checked.\n it is an absolute controlled component and has no uncontrolled mode. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel> <antd:CheckableTag Content="Tag1" /> <antd:CheckableTag Content="Tag2" /> <antd:CheckableTag Content="Tag3" /> </WrapPanel> By using the `Visibility` property, you can control the close state of Tag. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <StackPanel>\n \t<WrapPanel>\n \t\t<antd:Tag Content="Movies" Closable="True" Visibility="{Binding Visibility, Mode=TwoWay}" />\n \t</WrapPanel>\n \t<WrapPanel>\n \t\t<antd:Button x:Name="Toggle" Size="Small" Content="Toggle" />\n \t</WrapPanel>\n </StackPanel>