-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoadingWindow.xaml
27 lines (27 loc) · 1.26 KB
/
LoadingWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Window
x:Class="VMsApp.LoadingWindow"
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:winuiex="using:WinUIEx"
xmlns:Custom="using:Microsoft.UI.Xaml.Controls"
mc:Ignorable="d">
<Window.SystemBackdrop>
<MicaBackdrop Kind="Base"/>
</Window.SystemBackdrop>
<Grid>
<Image Source="ms-appx:///Assets/Square44x44Logo.png" Width="125" HorizontalAlignment="Left" Margin="50"/>
<StackPanel Margin="225, 45, 0, 0">
<TextBlock Text="VMsApp" FontSize="22"/>
<TextBlock Text="Modern virtualization software" Margin="0, 15, 0, 0"/>
<TextBlock Text="Developed by the VMsApp devs"/>
<TextBlock Text="0.1 PREVIEW"/>
<TextBlock Text="Compilation date" x:Name="CompilationText"/>
<TextBlock Text=""/>
<TextBlock Text="Made with the Windows App SDK"/>
<TextBlock Text="Loading..." Margin="0, 15, 0, 0"/>
</StackPanel>
<ProgressRing HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="25"/>
</Grid>
</Window>