Advertisement
Guest User

Windows 8.1 layout RememberMe

a guest
May 26th, 2015
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.67 KB | None | 0 0
  1. <Page
  2.     x:Class="RememberMe.MainPage"
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.     xmlns:local="using:RememberMe"
  6.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8.     mc:Ignorable="d">
  9.  
  10.     <Grid>
  11.         <Grid.Background>
  12.             <ImageBrush Stretch="Fill" ImageSource="Assets/BG-W.png"/>
  13.         </Grid.Background>
  14.         <Grid.RowDefinitions>
  15.             <RowDefinition Height="240"/>
  16.             <RowDefinition Height="*"/>
  17.             <RowDefinition Height="100"/>
  18.             <RowDefinition Height="100"/>
  19.             <RowDefinition Height="100"/>
  20.             <RowDefinition Height="2*"/>
  21.         </Grid.RowDefinitions>
  22.         <StackPanel VerticalAlignment="Center" Margin="0, 20, 0, 0">
  23.             <TextBlock Text="REMEMBER" FontSize="80" TextAlignment="Center" VerticalAlignment="Center" FontFamily="Quartz MS" FontWeight="Bold" Foreground="#FFDFECDC" />
  24.             <TextBlock Text="ME" FontSize="80" TextAlignment="Center" VerticalAlignment="Center" FontFamily="Quartz MS" FontWeight="Bold" Foreground="#FFDFECDC" />
  25.         </StackPanel>
  26.         <Image x:Name="btn_start" Grid.Row="2" Height="95" Width="260" HorizontalAlignment="Center" Source="Asset/btn-start.png" />
  27.         <Image x:Name="btn_score" Grid.Row="3" Height="95" Width="260" HorizontalAlignment="Center" Source="Asset/btn-score.png" />
  28.         <Image x:Name="btn_about" Grid.Row="4" Tapped="btn_about_Tapped" Height="95" Width="260" HorizontalAlignment="Center" Source="Asset/btn-about.png"/>
  29.     </Grid>
  30. </Page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement