1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <phone:PhoneApplicationPage
- x:Class="IDTemplate.MainPage"
- 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" d:DesignWidth="480" d:DesignHeight="768"
- FontFamily="{StaticResource PhoneFontFamilyNormal}"
- FontSize="{StaticResource PhoneFontSizeNormal}"
- Foreground="{StaticResource PhoneForegroundBrush}"
- SupportedOrientations="Portrait" Orientation="Portrait"
- shell:SystemTray.IsVisible="True">
- <!--LayoutRoot is the root grid where all page content is placed-->
- <Grid x:Name="LayoutRoot" Background="Transparent">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!--TitlePanel contains the name of the application and page title-->
- <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28"></StackPanel>
- <!--ContentPanel - place additional content here-->
- <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
- <Grid >
- <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">
- <TextBlock Height="49" Name="textBlock3" Text="Business" Width="101" />
- </Border>
- <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">
- <TextBlock Height="49" Name="textBlock4" Text="Student" Width="101" />
- </Border>
- <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">
- <TextBlock Height="49" Name="textBlock5" Text="Employee" Width="101" />
- </Border>
- <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">
- <TextBlock Height="49" Name="textBlock6" Text="Visiting" Width="101" />
- </Border>
- <TextBlock Height="44" HorizontalAlignment="Left" Margin="60,60,0,0" Name="textBlock1" Text="Choose your Template" VerticalAlignment="Top" Width="344" TextTrimming="None" FlowDirection="LeftToRight" />
- </Grid>
- </Grid>
- <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" />
- </Grid>
-
- <!--Sample code showing usage of ApplicationBar-->
- <!--<phone:PhoneApplicationPage.ApplicationBar>
- <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
- <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>
- <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>
- <shell:ApplicationBar.MenuItems>
- <shell:ApplicationBarMenuItem Text="MenuItem 1"/>
- <shell:ApplicationBarMenuItem Text="MenuItem 2"/>
- </shell:ApplicationBar.MenuItems>
- </shell:ApplicationBar>
- </phone:PhoneApplicationPage.ApplicationBar>-->
- </phone:PhoneApplicationPage>
|