基本信息
源码名称:wpf自定义漂亮的进度条(可用于程序运行进度)
源码大小:0.26M
文件格式:.zip
开发语言:C#
更新时间:2019-06-30
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

<Window x:Class="PercentProgress.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:PercentProgress"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
        </Grid.RowDefinitions>
        <local:PerProBar Grid.Row="0" x:Name="proBar0" BarValue="98" ForegroundColor="0"/>
        <local:PerProBar Grid.Row="1" x:Name="proBar1" BarValue="98" ForegroundColor="1"/>
        <local:PerProBar Grid.Row="2" x:Name="proBar2" BarValue="98" ForegroundColor="2"/>
        <local:PerProBar Grid.Row="3" x:Name="proBar3" BarValue="98" ForegroundColor="3"/>
        <local:PerProBar Grid.Row="4" x:Name="proBar4" BarValue="98" ForegroundColor="4"/>
    </Grid>
</Window>