Basic usage example. <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntDesignWPF"\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.Attached="[Event Closing] = [Action Closing($source, $eventArgs)]">Prevent Default</antd:Tag>\n </WrapPanel> Using pre & post tabs example. <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntDesignWPF"\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.Attached="[Event Closing] = [Action Closing($source, $eventArgs)]">Prevent Default</antd:Tag>\n </WrapPanel> Example of creating a search box by grouping a standard input with a search button. <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntDesignWPF"\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.Attached="[Event Closing] = [Action Closing($source, $eventArgs)]">Prevent Default</antd:Tag>\n </WrapPanel> Add prefix or suffix icons inside input. <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntDesignWPF"\n\n <TextBox antd:Input.Placeholder="Enter your username">\n \t<antd:Input.Prefix>\n \t\t<antd:Icon Type="user" Foreground="#3F000000" />\n \t</antd:Input.Prefix>\n \t<antd:Input.Suffix>\n \t\t<antd:Icon Type="close" Foreground="#3F000000" />\n \t</antd:Input.Suffix>\n </TextBox> There are three sizes of an Input box: `Large` (40px)、`Default` (32px) and `Small` (24px). <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/Theme.xaml" />\n <ResourceDictionary Source="pack://application:,,,/AntDesignWPF;component/Themes/AntIcons.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntDesignWPF"\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.Attached="[Event Closing] = [Action Closing($source, $eventArgs)]">Prevent Default</antd:Tag>\n </WrapPanel>