mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
|
<Page
|
||
|
x:Class="DrumKit.LoadingPage"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:DrumKit"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d">
|
||
|
|
||
|
<Grid Background="#164646">
|
||
|
<Grid HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Center">
|
||
|
<Image Source="ms-appx:///Assets/Logos/SplashScreen.png"
|
||
|
Stretch="None"/>
|
||
|
</Grid>
|
||
|
|
||
|
<StackPanel
|
||
|
HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Bottom"
|
||
|
Orientation="Horizontal"
|
||
|
Margin="20">
|
||
|
<ProgressRing Width="40" Height="40" IsActive="True" Foreground="White" />
|
||
|
<TextBlock
|
||
|
Name="TextLoading"
|
||
|
Style="{StaticResource SubheaderTextStyle}" Margin="10,0,0,0">
|
||
|
Loading resources...</TextBlock>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
</Page>
|