48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<UserControl x:Class="Wpf_AiSportsMicrospace.MyUserControl.WxProgressBar"
|
|
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"
|
|
x:Name="root"
|
|
>
|
|
<Grid>
|
|
<Image x:Name="MiddleLine" HorizontalAlignment="Left" Source="/Resources/Img/Album/vs.png" Width="60" Height="110" Panel.ZIndex="100" Margin="580,0,0,0"/>
|
|
<Grid Height="55" Width="1206">
|
|
<Border BorderBrush="#ffffff" BorderThickness="3" CornerRadius="5" Padding="0" Margin="0">
|
|
<Grid >
|
|
<Border BorderBrush="#e0585b" BorderThickness="2" CornerRadius="2" Background="#e0585b"></Border>
|
|
|
|
<Grid x:Name="left" Width="600" Height="49" HorizontalAlignment="Left">
|
|
<Border BorderBrush="#95dfce" BorderThickness="2" CornerRadius="2" Background="#95dfce"></Border>
|
|
</Grid>
|
|
<!--<Grid x:Name="right" Width="600" Height="49" HorizontalAlignment="right">
|
|
<Border BorderBrush="#e0585b" BorderThickness="2" CornerRadius="2" Background="#e0585b"></Border>
|
|
</Grid>-->
|
|
</Grid>
|
|
<!--<Canvas >
|
|
<Border x:Name="LeftBar" Background="#95dfce" HorizontalAlignment="Left" Height="50"/>
|
|
<Border x:Name="RightBar" Background="#e0585b" HorizontalAlignment="Right" Height="50"/>
|
|
-->
|
|
<!-- 中间分割线图片 -->
|
|
<!--
|
|
<Image x:Name="MiddleLine"
|
|
Source="/Resources/Img/Album/vs.png"
|
|
Width="50" Height="80" Panel.ZIndex="100"/>
|
|
|
|
-->
|
|
<!-- 中间百分比文本 -->
|
|
<!--
|
|
<TextBlock x:Name="ProgressTextBlock"
|
|
Foreground="White"
|
|
FontSize="14"
|
|
FontWeight="Bold"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"/>
|
|
</Canvas>-->
|
|
</Border>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|