MainPage.xaml 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <phone:PhoneApplicationPage
  2. x:Class="IDTemplate.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="480" d:DesignHeight="768"
  10. FontFamily="{StaticResource PhoneFontFamilyNormal}"
  11. FontSize="{StaticResource PhoneFontSizeNormal}"
  12. Foreground="{StaticResource PhoneForegroundBrush}"
  13. SupportedOrientations="Portrait" Orientation="Portrait"
  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"></StackPanel>
  23. <!--ContentPanel - place additional content here-->
  24. <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
  25. <Grid >
  26. <Border x:Name="BusinessBorder" BorderBrush="Yellow" BorderThickness="1" HorizontalAlignment="Left" Height="242" Margin="27,131,0,0" VerticalAlignment="Top" Width="202" Background="#FF06A6F5" Tap="onBusinessTapped" RenderTransformOrigin="0.017,0.496">
  27. <TextBlock Height="49" Name="textBlock3" Text="Business" Width="101" />
  28. </Border>
  29. <Border x:Name="StudentBorder" BorderBrush="Yellow" BorderThickness="1" HorizontalAlignment="Left" Height="242" Margin="221,131,0,0" VerticalAlignment="Top" Width="195" Background="#FF06A6F5" Tap="onStudentTapped">
  30. <TextBlock Height="49" Name="textBlock4" Text="Student" Width="101" />
  31. </Border>
  32. <Border x:Name="EmployeeBorder" BorderBrush="Yellow" BorderThickness="1" HorizontalAlignment="Left" Height="247" Margin="27,367,0,0" VerticalAlignment="Top" Width="202" Background="#FF06A6F5" Tap="onEmployeeTapped">
  33. <TextBlock Height="49" Name="textBlock5" Text="Employee" Width="101" />
  34. </Border>
  35. <Border x:Name="VistingBorder" BorderBrush="Yellow" BorderThickness="1" HorizontalAlignment="Left" Height="247" Margin="221,367,0,0" VerticalAlignment="Top" Width="195" Background="#FF06A6F5" Tap="onVisitingTapped">
  36. <TextBlock Height="49" Name="textBlock6" Text="Visiting" Width="101" />
  37. </Border>
  38. <TextBlock Height="44" HorizontalAlignment="Left" Margin="60,60,0,0" Name="textBlock1" Text="Choose your Template" VerticalAlignment="Top" Width="344" TextTrimming="None" FlowDirection="LeftToRight" />
  39. </Grid>
  40. </Grid>
  41. <TextBlock Height="61" HorizontalAlignment="Stretch" Margin="12,0,0,0" Name="textBlock2" Text="Cutomize ID" VerticalAlignment="Top" Width="430" Grid.RowSpan="2" TextWrapping="Wrap" FontStretch="ExtraExpanded" FontSize="35" />
  42. </Grid>
  43. <!--Sample code showing usage of ApplicationBar-->
  44. <!--<phone:PhoneApplicationPage.ApplicationBar>
  45. <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
  46. <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>
  47. <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>
  48. <shell:ApplicationBar.MenuItems>
  49. <shell:ApplicationBarMenuItem Text="MenuItem 1"/>
  50. <shell:ApplicationBarMenuItem Text="MenuItem 2"/>
  51. </shell:ApplicationBar.MenuItems>
  52. </shell:ApplicationBar>
  53. </phone:PhoneApplicationPage.ApplicationBar>-->
  54. </phone:PhoneApplicationPage>