24 lines
1.8 KiB
Plaintext
24 lines
1.8 KiB
Plaintext
|
|
<UserControl x:Class="OperationControl.Controls.ProgressBarText"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignWidth="260" d:DesignHeight="22">
|
||
|
|
<Grid>
|
||
|
|
<Border CornerRadius="{Binding CornerRadius, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
Background="{Binding BackgroundBrush, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
BorderBrush="{Binding BorderBrush, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
BorderThickness="1"/>
|
||
|
|
<ProgressBar x:Name="PB"
|
||
|
|
Minimum="{Binding Minimum, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
Maximum="{Binding Maximum, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
Value="{Binding Value, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
Foreground="{Binding BarBrush, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
Background="#00000000" Height="{Binding Height, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
/>
|
||
|
|
<TextBlock Text="{Binding DisplayText, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
Foreground="{Binding TextBrush, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
||
|
|
FontWeight="Bold" FontSize="8" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|