MainWindow.axaml 816 B

12345678910111213141516171819
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. Width="650"
  7. Height="450"
  8. x:Class="fis.Upgrader.MainWindow"
  9. HasSystemDecorations="False"
  10. WindowStartupLocation="CenterScreen"
  11. ShowInTaskbar="False"
  12. Topmost="True"
  13. Title="fis.Upgrader">
  14. <StackPanel VerticalAlignment="Bottom" Margin="5,0,5,25" >
  15. <TextBlock x:Name="upgradeStatusText" Margin="0,0,0,3" />
  16. <ProgressBar ShowProgressText="True" x:Name="upgradeProgressBar" Foreground="#509EFF" Minimum="0" Maximum="100" Value="0" />
  17. </StackPanel>
  18. </Window>