-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetHelp.xaml
34 lines (29 loc) · 2.44 KB
/
GetHelp.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Page
x:Class="ReviewR.GetHelp"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ReviewR"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid x:Name="canvasgrid" Background="#D55E5E">
<Grid x:Name="CanvasGrid">
<Grid.RowDefinitions>
<RowDefinition Height="250"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0" Background="Black">
<TextBlock x:Name="help_text" Grid.Row="0" Text="Get Help & Support" TextWrapping="Wrap" FontSize="75" TextAlignment="Center" FontWeight="Bold" Margin="277,65,276,65"/>
</Grid>
<Grid Grid.Row="1" Background="#D55E5E">
<TextBlock x:Name="gethelp_description" Text="Please select the correct option below to receive the relevant support. If you query relates to something other than those, please contact an administrator who will be able to tailor your support." TextWrapping="Wrap" FontSize="50" TextAlignment="Center" FontWeight="Bold" Margin="67,219,68,387"/>
<TextBlock x:Name="username_text" Text="Hi again, <$username>" TextWrapping="Wrap" Height="134" FontSize="100" TextAlignment="Center" FontWeight="Bold" Margin="42,25,41,671"/>
<Button x:Name="compromisedacc_button" Content="Report compromised account" Margin="986,635,400,75" FontSize="36" VerticalAlignment="Stretch" FontWeight="Bold" Visibility="Visible" HorizontalAlignment="Stretch"/>
<Button x:Name="contact_button" Content="Contact an Administrator" Margin="986,491,400,219" FontSize="36" VerticalAlignment="Stretch" FontWeight="Bold" Visibility="Visible" HorizontalAlignment="Stretch"/>
<Button x:Name="report_button" Content="Report a post or user" Margin="399,635,987,75" FontSize="36" VerticalAlignment="Stretch" FontWeight="Bold" Visibility="Visible" HorizontalAlignment="Stretch"/>
<Button x:Name="guide_button" Content="Guides & tutorials" Margin="399,491,987,219" FontSize="36" VerticalAlignment="Stretch" FontWeight="Bold" Visibility="Visible" HorizontalAlignment="Stretch"/>
</Grid>
</Grid>
</Grid>
</Page>