| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:sys="clr-namespace:System;assembly=mscorlib">
-
- <Style x:Key="ThemeProgressBar" TargetType="{x:Type ProgressBar}">
- <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
- <Setter Property="SnapsToDevicePixels" Value="True"/>
- <Setter Property="Height" Value="9"/>
- <Setter Property="Background" Value="{StaticResource ThemeColor}"/>
- <Setter Property="FontSize" Value="10"/>
- <Setter Property="Padding" Value="5,0"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ProgressBar}">
- <Grid Background="#00000000">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <Grid Height="{TemplateBinding Height}">
- <Border Background="#000000" CornerRadius="5" Opacity="0.05"/>
- <Border BorderBrush="#000000" BorderThickness="0" CornerRadius="5" Opacity="0.1"/>
- <Grid Margin="{TemplateBinding BorderThickness}">
- <Border x:Name="PART_Track"/>
- <Grid x:Name="PART_Indicator" ClipToBounds="True" HorizontalAlignment="Left" >
- <Grid x:Name="Animation" RenderTransformOrigin="0.5,0.5">
- <Grid.RenderTransform>
- <TransformGroup>
- <ScaleTransform ScaleY="-1" ScaleX="1"/>
- <SkewTransform AngleY="0" AngleX="0"/>
- <RotateTransform Angle="180"/>
- <TranslateTransform/>
- </TransformGroup>
- </Grid.RenderTransform>
- <Border x:Name="Bor" Background="{TemplateBinding Background}" CornerRadius="5"/>
- </Grid>
- </Grid>
- </Grid>
- </Grid>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="False">
- <Setter Property="Background" Value="{StaticResource ThemeColor}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </ResourceDictionary>
|