chr
7 天以前 43a0207d207390abdeeb3ab9155eebf03edd7b1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>