Three sizes and two shapes are available. <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:Avatar Size="64" Icon="user" />\n \t\t<antd:Avatar Size="Large" Icon="user" />\n \t\t<antd:Avatar Icon="user" />\n \t\t<antd:Avatar Size="Small" Icon="user" />\n \t</WrapPanel>\n \t<WrapPanel>\n \t\t<antd:Avatar Shape="Square" Size="64" Icon="user" />\n \t\t<antd:Avatar Shape="Square" Size="Large" Icon="user" />\n \t\t<antd:Avatar Shape="Square" Icon="user" />\n \t\t<antd:Avatar Shape="Square" Size="Small" Icon="user" />\n \t</WrapPanel> </StackPanel> For letter type Avatar, when the letters are too long to display, the font size can be automatically adjusted according to the width of the Avatar. <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:Avatar Background="{Binding Background}" Margin="0 0 16 0" Text="{Binding Text}" />\n \t<antd:Button x:Name="Change" Size="Small" Content="Change" />\n </WrapPanel> Image, Icon and letter are supported, and the latter two kinds avatar can have custom colors and background colors. USER <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:Avatar Icon="user" />\n \t<antd:Avatar Text="U" />\n \t<antd:Avatar>USER</antd:Avatar>\n \t<antd:Avatar Source="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />\n \t<antd:Avatar Text="U" Background="#FDE3CF" Foreground="#F56A00" />\n \t<antd:Avatar Icon="user" Background="#87D068" />\n </WrapPanel> Usually used for messages remind. <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:Badge Count="1" Margin="0 0 24 0">\n \t\t<antd:Avatar Shape="Square" Icon="user" Margin="0" />\n \t</antd:Badge>\n \t<antd:Badge Dot="True">\n \t\t<antd:Avatar Shape="Square" Icon="user" Margin="0" />\n \t</antd:Badge>\n </WrapPanel>