<Window x:Class="AutoUpdater.MainWindow"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:local="clr-namespace:AutoUpdater"
|
mc:Ignorable="d"
|
Title="自动更新程序" Height="180" Width="400" Loaded="Window_Loaded" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
<Grid>
|
<StackPanel>
|
<Label x:Name="label" Content="..." FontSize="16" HorizontalAlignment="Left" Margin="25,10"/>
|
<ProgressBar x:Name="bar" HorizontalAlignment="Center" Height="20" Width="350" />
|
<Button Width="60" Content="检查更新" Click="Button_Click" Margin="20"/>
|
</StackPanel>
|
|
|
</Grid>
|
</Window>
|