2013-11-18 18:06:17 +00:00
|
|
|
<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">
|
|
|
|
|
2013-11-18 18:11:53 +00:00
|
|
|
<Grid Background="{StaticResource ApplicationBackgroundColor}">
|
|
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
2013-11-18 18:06:17 +00:00
|
|
|
<Grid HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center">
|
|
|
|
<Image Source="ms-appx:///Assets/Logos/SplashScreen.png"
|
|
|
|
Stretch="None"/>
|
2013-11-18 18:11:53 +00:00
|
|
|
|
2013-11-18 18:06:17 +00:00
|
|
|
</Grid>
|
2013-11-18 18:11:53 +00:00
|
|
|
|
2013-11-18 18:06:17 +00:00
|
|
|
<StackPanel
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
Orientation="Horizontal"
|
|
|
|
Margin="20">
|
|
|
|
<ProgressRing Width="40" Height="40" IsActive="True" Foreground="White" />
|
|
|
|
<TextBlock
|
2013-11-18 18:11:53 +00:00
|
|
|
Name="textLoading"
|
2013-11-18 18:06:17 +00:00
|
|
|
Style="{StaticResource SubheaderTextStyle}" Margin="10,0,0,0">
|
|
|
|
Loading resources...</TextBlock>
|
|
|
|
</StackPanel>
|
|
|
|
|
2013-11-18 18:11:53 +00:00
|
|
|
<ProgressBar
|
|
|
|
Name="progressBar" Grid.Row="1"
|
|
|
|
Foreground="#53AB6D" Background="#20FFFFFF"
|
|
|
|
Minimum="0" Maximum="100"/>
|
|
|
|
|
2013-11-18 18:06:17 +00:00
|
|
|
</Grid>
|
|
|
|
</Page>
|