A simple loading status. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel>\n \t<antd:Spin />\n </WrapPanel> Customized description content. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel>\n \t<antd:Spin Tip="Loading...">\n \t\t<antd:Alert Message="Alert message title" Description="Further details about the context of this alert." />\n \t</antd:Spin>\n </WrapPanel> Use custom loading indicator. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel>\n \t<antd:Spin>\n \t\t<antd:Spin.Indicator>\n \t\t\t<antd:Icon Type="loading" FontSize="24" />\n \t\t</antd:Spin.Indicator>\n \t</antd:Spin>\n </WrapPanel> A small `Spin` use in loading text, default `Spin` use in loading card-level block, and large `Spin` use in loading page. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <WrapPanel>\n \t<antd:Spin Size="Small" Margin="0 0 16 16" />\n \t<antd:Spin Margin="0 0 16 16" />\n \t<antd:Spin Size="Large" Margin="0 0 16 16" />\n </WrapPanel> Embedding content into `Spin` will alter it into loading state. <ResourceDictionary Source="pack://application:,,,/AntdWpf;component/Themes/Theme.xaml" />\n\n xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"\n\n <StackPanel>\n \t<WrapPanel>\n \t\t<antd:Spin Spinning="{Binding IsChecked, Mode=OneWay, ElementName=SwitchOne}">\n \t\t\t<antd:Alert Message="Alert message title" Description="Further details about the context of this alert." />\n \t\t</antd:Spin>\n \t</WrapPanel>\n \t<WrapPanel Margin="0 16 0 0">\n \t\t<Label Content="Loading state:" />\n \t\t<antd:Switch x:Name="SwitchOne" />\n \t</WrapPanel>\n </StackPanel>