You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MainWindow.xaml 1.2 kB

123456789101112131415161718192021222324252627
  1. <Window x:Class="InstallerUpdater.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:InstallerUpdater"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="180" Width="300"
  9. ResizeMode="CanMinimize"
  10. >
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="40"/>
  14. <RowDefinition Height="20"/>
  15. <RowDefinition Height="40"/>
  16. <RowDefinition Height="20"/>
  17. <RowDefinition Height="*"/>
  18. </Grid.RowDefinitions>
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition Width="40"/>
  21. <ColumnDefinition Width="*"/>
  22. <ColumnDefinition Width="40"/>
  23. </Grid.ColumnDefinitions>
  24. <TextBlock Grid.Row="1" Grid.Column="1" TextAlignment="Center">正在尝试更新下载器</TextBlock>
  25. <ProgressBar Grid.Row="3" Grid.Column="1" IsIndeterminate="True"/>
  26. </Grid>
  27. </Window>