schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <ControlTemplate x:Key="CustomProgressBar" TargetType="{x:Type ProgressBar}">
        <Grid>
            <ProgressBar Name="PART_ProgressBar" Value="{TemplateBinding Value}" 
                     Maximum="{TemplateBinding Maximum}" 
                     Minimum="{TemplateBinding Minimum}" 
                     Width="{TemplateBinding Width}" Height="{TemplateBinding Height}" Foreground="LightGreen"/>
            <TextBlock Name="StatusText" 
                   HorizontalAlignment="Center" 
                   VerticalAlignment="Center" 
                   FontSize="8" 
                   Foreground="White" />
        </Grid>
    </ControlTemplate>
</ResourceDictionary>