Skip to content

Instantly share code, notes, and snippets.

@georgechond94
Created May 2, 2016 19:21
Show Gist options
  • Save georgechond94/c674a54e073221e8bd78a7d7c1f51820 to your computer and use it in GitHub Desktop.
Save georgechond94/c674a54e073221e8bd78a7d7c1f51820 to your computer and use it in GitHub Desktop.
<RelativePanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<StackPanel Name="loginSp" RelativePanel.AlignHorizontalCenterWithPanel="True">
<TextBlock Margin="10" Style="{StaticResource HeaderTextBlockStyle}" Text="Login using.."></TextBlock>
<Button Margin="5" HorizontalAlignment="Center" Content="Facebook" Click="Login_Click"></Button>
<Button Margin="5" HorizontalAlignment="Center" Content="Google" Click="Login_Click"></Button>
<Button Margin="5" HorizontalAlignment="Center" Content="Microsoft Account" Click="Login_Click"></Button>
<Button Margin="5" HorizontalAlignment="Center" Content="Twitter" Click="Login_Click"></Button>
</StackPanel>
<StackPanel RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.Below="loginSp" Name="userSp">
<Image Width="100" Height="100" Name="userImage"></Image>
<TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Name="userName"></TextBlock>
</StackPanel>
</RelativePanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment