BatchStatus.xaml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <UserControl x:Class="PDF_Master.CustomControl.BatchStatus"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:local="clr-namespace:PDF_Master.CustomControl"
  8. mc:Ignorable="d"
  9. d:DesignHeight="16" d:DesignWidth="16">
  10. <Grid>
  11. <Border x:Name="wait" Width="16" Height="16" Visibility="Visible">
  12. <Path HorizontalAlignment="Center" VerticalAlignment="Center" Data="M12.5 7C12.5 10.0376 10.0376 12.5 7 12.5C3.96243 12.5 1.5 10.0376 1.5 7C1.5 3.96243 3.96243 1.5 7 1.5C10.0376 1.5 12.5 3.96243 12.5 7ZM14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM6.25 3V7V7.75H7H10V6.25H7.75V3H6.25Z" Fill="#616469"></Path>
  13. </Border>
  14. <Border x:Name="complete" Width="16" Height="16" Visibility="Hidden">
  15. <Grid>
  16. <Ellipse Width="16" Height="16" Stroke="#1AD598" StrokeThickness="8"></Ellipse>
  17. <Path Data="M12.5912 5.46152L7.907 11.4615C7.77258 11.6337 7.5698 11.7387 7.35162 11.7491C7.13345 11.7596 6.92157 11.6744 6.77136 11.5158L3.45557 8.01579L4.5445 6.98418L7.26093 9.85152L11.4089 4.53845L12.5912 5.46152Z" Fill="white"></Path>
  18. </Grid>
  19. </Border>
  20. <Border x:Name="error" Width="16" Height="16" Visibility="Hidden">
  21. <Grid>
  22. <Ellipse Width="16" Height="16" Stroke="#F3465B" StrokeThickness="8"></Ellipse>
  23. <Path Data="M0.25 0V5H1.75V0H0.25ZM0.25 6.5V8H1.75L1.75 6.5H0.25Z" Fill="white" HorizontalAlignment="Center" VerticalAlignment="Center">
  24. </Path>
  25. </Grid>
  26. </Border>
  27. <Grid x:Name="progress" Visibility="Hidden">
  28. <Rectangle Width="16" Height="16" Stroke="White" StrokeThickness="8" RadiusX="50" RadiusY="50"></Rectangle>
  29. <Rectangle x:Name="progressBar" RenderTransformOrigin="0.5,0.5" Width="16" Height="16" Stroke="#1AD598" StrokeThickness="8" StrokeDashArray="1,1000" RadiusX="50" RadiusY="50">
  30. <Rectangle.RenderTransform>
  31. <RotateTransform Angle="90"></RotateTransform>
  32. </Rectangle.RenderTransform>
  33. </Rectangle>
  34. </Grid>
  35. </Grid>
  36. </UserControl>