15 lines
899 B
Plaintext
15 lines
899 B
Plaintext
|
|
<UserControl x:Class="Zerolauncher.dialog.DownloadControl"
|
||
|
|
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 Text="零蛋正在更新装备..." Foreground="PaleGoldenrod" HorizontalAlignment="Center" Margin="5"/>
|
||
|
|
<ProgressBar Name="pbDown" HorizontalAlignment="Center" Height="10" Width="200" Value="50"/>
|
||
|
|
<Label Name="label1" Content="0 kb/s--50%" Foreground="BurlyWood" HorizontalAlignment="Center"/>
|
||
|
|
</StackPanel>
|
||
|
|
</UserControl>
|