mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
44 lines
1.4 KiB
Plaintext
44 lines
1.4 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="{StaticResource ApplicationBackgroundColor}">
|
||
|
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition />
|
||
|
<RowDefinition Height="Auto" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<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>
|
||
|
|
||
|
<ProgressBar
|
||
|
Name="progressBar" Grid.Row="1"
|
||
|
Foreground="#53AB6D" Background="#20FFFFFF"
|
||
|
Minimum="0" Maximum="100"/>
|
||
|
|
||
|
</Grid>
|
||
|
</Page>
|
||
|
|