LoadingBaseStyle.xaml 521 B

1234567891011
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:hc="clr-namespace:HandyControl.Controls">
  4. <Style x:Key="LoadingBaseStyle" TargetType="hc:LoadingBase">
  5. <Setter Property="Focusable" Value="False"/>
  6. <Setter Property="DotDiameter" Value="10"/>
  7. <Setter Property="Foreground" Value="{DynamicResource PrimaryBrush}"/>
  8. </Style>
  9. </ResourceDictionary>