MainPage.xaml 1.3 KB

12345678910111213141516171819202122232425262728
  1. <phone:PhoneApplicationPage
  2. x:Class="SolitaireHTML5.MainPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
  6. xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="480"
  10. FontFamily="{StaticResource PhoneFontFamilyNormal}"
  11. FontSize="{StaticResource PhoneFontSizeNormal}"
  12. Foreground="{StaticResource PhoneForegroundBrush}"
  13. SupportedOrientations="Landscape" Orientation="LandscapeLeft"
  14. shell:SystemTray.IsVisible="False">
  15. <Grid x:Name="LayoutRoot" Background="Transparent">
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="*"/>
  18. </Grid.RowDefinitions>
  19. <phone:WebBrowser Grid.Row="0" Name="webBrowser"
  20. Background="Transparent"
  21. IsScriptEnabled="True"
  22. LoadCompleted="webBrowser_LoadCompleted" />
  23. </Grid>
  24. </phone:PhoneApplicationPage>