12345678910111213141516171819202122232425262728293031323334353637 |
- <UserControl x:Class="PDF_Master.CustomControl.BatchStatus"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.CustomControl"
- mc:Ignorable="d"
- d:DesignHeight="16" d:DesignWidth="16">
- <Grid>
- <Border x:Name="wait" Width="16" Height="16" Visibility="Visible">
- <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>
- </Border>
- <Border x:Name="complete" Width="16" Height="16" Visibility="Hidden">
- <Grid>
- <Ellipse Width="16" Height="16" Stroke="#1AD598" StrokeThickness="8"></Ellipse>
- <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>
- </Grid>
- </Border>
- <Border x:Name="error" Width="16" Height="16" Visibility="Hidden">
- <Grid>
- <Ellipse Width="16" Height="16" Stroke="#F3465B" StrokeThickness="8"></Ellipse>
- <Path Data="M0.25 0V5H1.75V0H0.25ZM0.25 6.5V8H1.75L1.75 6.5H0.25Z" Fill="white" HorizontalAlignment="Center" VerticalAlignment="Center">
- </Path>
- </Grid>
- </Border>
- <Grid x:Name="progress" Visibility="Hidden">
-
- <Rectangle Width="16" Height="16" Stroke="White" StrokeThickness="8" RadiusX="50" RadiusY="50"></Rectangle>
- <Rectangle x:Name="progressBar" RenderTransformOrigin="0.5,0.5" Width="16" Height="16" Stroke="#1AD598" StrokeThickness="8" StrokeDashArray="1,1000" RadiusX="50" RadiusY="50">
- <Rectangle.RenderTransform>
- <RotateTransform Angle="90"></RotateTransform>
- </Rectangle.RenderTransform>
- </Rectangle>
- </Grid>
- </Grid>
- </UserControl>
|