2014-03-29 03:52:16 +08:00
|
|
|
<phone:PhoneApplicationPage
|
2014-10-23 22:12:51 +08:00
|
|
|
x:Class="cocos2d.MainPage"
|
2014-03-29 03:52:16 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
|
|
|
|
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
FontFamily="{StaticResource PhoneFontFamilyNormal}"
|
|
|
|
FontSize="{StaticResource PhoneFontSizeNormal}"
|
|
|
|
Foreground="{StaticResource PhoneForegroundBrush}"
|
|
|
|
SupportedOrientations="Landscape" Orientation="Landscape"
|
|
|
|
shell:SystemTray.IsVisible="False">
|
|
|
|
|
|
|
|
<!--LayoutRoot is the root grid where all page content is placed-->
|
|
|
|
<DrawingSurfaceBackgroundGrid x:Name="DrawingSurfaceBackground" Loaded="DrawingSurfaceBackground_Loaded">
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="10,0,0,0" Height="30" VerticalAlignment="Top" x:Name="MemoryDisplay">
|
|
|
|
<TextBlock Text="Memory: "/>
|
|
|
|
<TextBlock x:Name="MemoryTextBlock"/>
|
|
|
|
<TextBlock Text=" MB"/>
|
|
|
|
<TextBlock Text=" Peak: "/>
|
|
|
|
<TextBlock x:Name="PeakMemoryTextBlock"/>
|
|
|
|
<TextBlock Text=" MB"/>
|
|
|
|
</StackPanel>
|
|
|
|
</DrawingSurfaceBackgroundGrid>
|
|
|
|
|
|
|
|
</phone:PhoneApplicationPage>
|