MainWindow.xaml 1.2 KB

123456789101112131415161718192021222324
  1. <Window x:Class="PixiEditor.UpdateInstaller.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. mc:Ignorable="d"
  7. Title="MainWindow" Height="350" Width="250" Background="#2D2D30" ResizeMode="NoResize"
  8. WindowStyle="None" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded">
  9. <WindowChrome.WindowChrome>
  10. <WindowChrome ResizeBorderThickness="6"
  11. CaptionHeight="30" />
  12. </WindowChrome.WindowChrome>
  13. <Grid>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="130" />
  16. <RowDefinition />
  17. </Grid.RowDefinitions>
  18. <Image Source="Images/PixiEditorLogo.png" Width="75" Height="75" Grid.Row="0" />
  19. <StackPanel Grid.Row="1" Margin="0,20,0,0">
  20. <Label Content="Installing update" HorizontalAlignment="Center" Foreground="White" FontSize="20" />
  21. <ProgressBar Margin="0,20,0,0" Height="20" Width="200" Value="{Binding ProgressValue}" />
  22. </StackPanel>
  23. </Grid>
  24. </Window>