-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactUs.xaml
94 lines (81 loc) · 4.11 KB
/
ContactUs.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<Page
x:Class="ShegzstuffPC.ContactUs"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ShegzstuffPC"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<ScrollViewer VerticalScrollMode="Auto"
HorizontalScrollMode="Auto"
VerticalScrollBarVisibility="Auto"
HorizontalScrollBarVisibility="Auto">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Image Source="Assets/Images/Shegz.png"
Stretch="UniformToFill"
Grid.RowSpan="2"/>
<StackPanel Grid.Row="0"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<StackPanel Orientation="Horizontal">
<HyperlinkButton Width="100"
NavigateUri="https://m.facebook.com/JAMB-2018-Answers-616940481977475/?ref=dbl">
<Image Source="Assets/Images/facebook.png"/>
</HyperlinkButton>
<HyperlinkButton FontSize="32"
Margin="10,00,00,00"
Content="Facebook"
Foreground="White"
Background="Green"
NavigateUri="https://m.facebook.com/JAMB-2018-Answers-616940481977475/?ref=dbl"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<HyperlinkButton Width="100"
NavigateUri="https://chat.whatsapp.com/HPmOUETUtWr9K0LzMhUHBz">
<Image Source="Assets/Images/Whatsapp.png"/>
</HyperlinkButton>
<HyperlinkButton FontSize="32"
Margin="10,00,00,00"
Content="Whatsapp"
Foreground="White"
Background="Green"
NavigateUri="https://chat.whatsapp.com/HPmOUETUtWr9K0LzMhUHBz"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<HyperlinkButton Width="100"
NavigateUri="https://t.me/joinchat/IxA9yRGDSmTm7GJ_tCrnTQ">
<Image Source="Assets/Images/Telegram (1).png"/>
</HyperlinkButton>
<HyperlinkButton FontSize="32"
Margin="10,00,00,00"
Content="Telegram"
Foreground="White"
Background="Green"
NavigateUri="https://t.me/joinchat/IxA9yRGDSmTm7GJ_tCrnTQ"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Image Source="Assets/Images/Email.png"
Width="100"/>
<TextBox FontSize="32"
Margin="10,00,00,00"
Foreground="White"
Background="Green"
Text="[email protected]"
IsReadOnly="True"/>
</StackPanel>
<TextBox Text="Call; 081 880 066 41"
FontSize="32"
FontWeight="Bold"
Foreground="White"
Background="Green"
Margin="00,100,00,00"
IsReadOnly="True"/>
</StackPanel>
</Grid>
</ScrollViewer>
</Page>