-
Notifications
You must be signed in to change notification settings - Fork 8
/
MainPage.xaml
20 lines (19 loc) · 1.09 KB
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Page
x:Class="UnityProject.MainPage"
IsTabStop="false"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UnityProject"
xmlns:localControls="using:UnityProject.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<SwapChainPanel x:Name="DXSwapChainPanel">
<Grid x:Name="ExtendedSplashGrid">
<Image x:Name="ExtendedSplashImage" Source="Assets/SplashScreen.png" VerticalAlignment="Center" HorizontalAlignment="Center"/>
<ProgressBar x:Name="SplashProgress" Foreground="#FFFFFFFF" Background="#FF333333" Maximum="25000" Width="320" Height="25" Margin="0,350,0,0"/>
</Grid>
<localControls:FBWebView x:Name="web" Visibility="Collapsed" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"/>
<TextBlock x:Name="TextBlockMemoryStats" Text="0 MB" IsHitTestVisible="False" Visibility="Collapsed"/>
</SwapChainPanel>
</Page>