/EventManager/EventManager/Buddies.xaml

http://wp7app.googlecode.com/ · XAML · 45 lines · 26 code · 5 blank · 14 comment · 0 complexity · bb25949375d641cd1498bb25e3dcdbc6 MD5 · raw file

  1. <phone:PhoneApplicationPage
  2. x:Class="EventManager.Buddies"
  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. FontFamily="{StaticResource PhoneFontFamilyNormal}"
  10. FontSize="{StaticResource PhoneFontSizeNormal}"
  11. Foreground="{StaticResource PhoneForegroundBrush}"
  12. SupportedOrientations="Portrait" Orientation="Portrait"
  13. mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
  14. shell:SystemTray.IsVisible="True">
  15. <!--LayoutRoot is the root grid where all page content is placed-->
  16. <Grid x:Name="LayoutRoot" Background="Transparent">
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="Auto"/>
  19. <RowDefinition Height="*"/>
  20. </Grid.RowDefinitions>
  21. <!--TitlePanel contains the name of the application and page title-->
  22. <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
  23. <TextBlock x:Name="ApplicationTitle" Text="EVENT MANAGER" Style="{StaticResource PhoneTextNormalStyle}" TextAlignment="Right" />
  24. <TextBlock x:Name="PageTitle" Text="Buddies" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
  25. </StackPanel>
  26. <!--ContentPanel - place additional content here-->
  27. <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"></Grid>
  28. </Grid>
  29. <!--Sample code showing usage of ApplicationBar-->
  30. <!--<phone:PhoneApplicationPage.ApplicationBar>
  31. <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
  32. <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>
  33. <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>
  34. <shell:ApplicationBar.MenuItems>
  35. <shell:ApplicationBarMenuItem Text="MenuItem 1"/>
  36. <shell:ApplicationBarMenuItem Text="MenuItem 2"/>
  37. </shell:ApplicationBar.MenuItems>
  38. </shell:ApplicationBar>
  39. </phone:PhoneApplicationPage.ApplicationBar>-->
  40. </phone:PhoneApplicationPage>