-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.xaml
21 lines (20 loc) · 1.4 KB
/
quiz.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Page
x:Class="Ice_Breaking.quiz"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Ice_Breaking"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource SystemControlAcrylicWindowBrush}">
<Grid Loaded="Grid_Loaded">
<Button x:Name="home" Content="" Click="home_Click" HorizontalAlignment="Left" VerticalAlignment="Top" FontFamily="segoe mdl2 assets" FontSize="50" Margin="20,20,0,0"/>
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
<Image x:Name="profile_photo" MaxHeight="300" Stretch="Uniform"/>
<Button x:Name="choice_a" Click="choice_a_Click" Content="A aaaaa" HorizontalAlignment="Center" Margin="0,10,0,10" FontSize="30"/>
<Button x:Name="choice_b" Click="choice_b_Click" Content="B aaaaa" HorizontalAlignment="Center" Margin="0,0,0,10" FontSize="30"/>
<Button x:Name="choice_c" Click="choice_c_Click" Content="C aaaaa" HorizontalAlignment="Center" Margin="0,0,0,10" FontSize="30"/>
<Button x:Name="choice_d" Click="choice_d_Click" Content="D aaaaa" HorizontalAlignment="Center" Margin="0,0,0,10" FontSize="30"/>
</StackPanel>
</Grid>
</Page>