ZeroLauncher/dialog/DownloadControl.xaml
2024-03-09 18:29:16 +08:00

15 lines
908 B
XML

<UserControl x:Class="Zerolauncher.dialog.DownloadControl1"
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:DesignHeight="169" d:DesignWidth="290">
<StackPanel Margin="5">
<Image Source="/res/39376.jpg" Height="100"/>
<TextBlock Name="text1" Text="零蛋正在更新装备..." Foreground="PaleGoldenrod" HorizontalAlignment="Center" Margin="5"/>
<ProgressBar Name="pbDown" HorizontalAlignment="Center" Height="10" Width="200" Value="50"/>
<TextBlock Name="text2" Text="0 kb/s" Foreground="BurlyWood" HorizontalAlignment="Center"/>
</StackPanel>
</UserControl>