兼容win7版应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.3 KiB

<UserControl x:Class="AIK.Views.MenuPages.CommonPage.PercentProgressBar"
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"
xmlns:local="clr-namespace:AIK.Views.MenuPages.CommonPage"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid Height="{Binding Height, RelativeSource={RelativeSource AncestorType=UserControl}}"
x:Name="RootGrid">
<Border Background="{Binding Background, RelativeSource={RelativeSource AncestorType=UserControl}}"
CornerRadius="12"/>
<Border x:Name="Indicator"
Background="{Binding Foreground, RelativeSource={RelativeSource AncestorType=UserControl}}"
CornerRadius="12"
HorizontalAlignment="Left"/>
<TextBlock x:Name="PercentText"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Foreground="White"
FontWeight="Bold"
FontSize="12"/>
</Grid>
</UserControl>