MainWindow.xaml 1.3 KB

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