MainPage.xaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <phone:PhoneApplicationPage
  2. x:Class="VocabManager.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. xmlns:local="clr-namespace:VocabManager"
  10. mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
  11. FontFamily="{StaticResource PhoneFontFamilyNormal}"
  12. FontSize="{StaticResource PhoneFontSizeNormal}"
  13. Foreground="{StaticResource PhoneForegroundBrush}"
  14. SupportedOrientations="Portrait" Orientation="Portrait"
  15. shell:SystemTray.IsVisible="True"
  16. >
  17. <!--LayoutRoot is the root grid where all page content is placed-->
  18. <Grid x:Name="LayoutRoot" Background="Black" >
  19. </Grid>
  20. <phone:PhoneApplicationPage.ApplicationBar >
  21. <shell:ApplicationBar IsVisible="False">
  22. </shell:ApplicationBar>
  23. </phone:PhoneApplicationPage.ApplicationBar>
  24. </phone:PhoneApplicationPage >