<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>
|