LoadingCircleBaseStyle.xaml 733 B

123456789101112131415
  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="LoadingCircleBaseStyle" BasedOn="{StaticResource LoadingBaseStyle}" TargetType="hc:LoadingCircle">
  5. <Setter Property="Width" Value="40"/>
  6. <Setter Property="Height" Value="40"/>
  7. <Setter Property="DotDiameter" Value="5"/>
  8. <Setter Property="DotInterval" Value="30"/>
  9. <Setter Property="DotOffSet" Value="60"/>
  10. <Setter Property="DotDelayTime" Value="90"/>
  11. <Setter Property="DotSpeed" Value="4"/>
  12. </Style>
  13. </ResourceDictionary>