• WPF自定义进度条


    <!--进度条 4812-->
    <LinearGradientBrush x:Key="ProgressBarIndicatorAnimatedFill" StartPoint="0,0" EndPoint="1,0">
    <GradientStop Color="#00EEEE" Offset="0.2"/>
    <GradientStop Color="#00EEEE" Offset="0.4"/>
    <GradientStop Color="#00EEEE" Offset="0.6"/>
    <GradientStop Color="#00EEEE" Offset="1"/>
    </LinearGradientBrush>
    <Style x:Key="ProgressBarBaseStyle" TargetType="{x:Type ProgressBar}">
    <Setter Property="Height" Value="20"/>
    <Setter Property="Background" Value="White"/>
    <Setter Property="BorderBrush" Value="#19000000"/>
    <Setter Property="BorderThickness" Value="0,0,0,0"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type ProgressBar}">
    <Grid>
    <Border x:Name="TemplateRoot" CornerRadius="4" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}">
    <Border.Effect>
    <BlurEffect Radius="2"></BlurEffect>
    </Border.Effect>
    </Border>
    <Grid Margin="{TemplateBinding BorderThickness}">
    <Rectangle x:Name="PART_Track"/>
    <Grid HorizontalAlignment="Left">
    <Decorator x:Name="PART_Indicator" HorizontalAlignment="Left" Margin="0,-1,0,0">
    <Border CornerRadius="4" x:Name="Animation" ClipToBounds="true" Background="{TemplateBinding Foreground}">
    <Rectangle x:Name="PART_GlowRect" Fill="{StaticResource ProgressBarIndicatorAnimatedFill}" HorizontalAlignment="Left" Margin="0,0,0,0" Width="100"/>
    </Border>
    </Decorator>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
    <Label FontSize="12" Foreground="#000" Padding="0,0,0,0" Content="{TemplateBinding Value}"></Label>
    <Label FontSize="12" Foreground="#000" Padding="0,0,0,0" Content="%"></Label>
    </StackPanel>
    </Grid>
    </Grid>
    </Grid>
    <ControlTemplate.Triggers>
    <Trigger Property="Orientation" Value="Vertical">
    <Setter Property="LayoutTransform" TargetName="TemplateRoot">
    <Setter.Value>
    <RotateTransform Angle="-90"/>
    </Setter.Value>
    </Setter>
    </Trigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    <Style x:Key="progress-bar-gif" BasedOn="{StaticResource ProgressBarBaseStyle}" TargetType="{x:Type ProgressBar}">
    <Setter Property="Foreground" Value="#00EEEE"/>
    </Style>
    
    使用方法: <ProgressBar Style="{DynamicResource progress-bar-gif}"  Name="DownProgressBar"></ProgressBar>  在后台填写数值就可以了
    每天进步一点点。
  • 相关阅读:
    Kibana查询说明
    windows下安装python 且 安装pip
    pycharm编辑器,各种设置及配置修改
    用python输出未来时间,递增
    window 下python2.7与python3.5两版本共存设置
    python 运算符
    python 运算及注释
    js 实现动态的图片时钟
    js table的笔记,实现添加 td,实现搜索功能
    js实现图片无缝连接
  • 原文地址:https://www.cnblogs.com/snow-zhang/p/10103054.html
Copyright © 2020-2023  润新知