-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHowToPlay.xaml
66 lines (63 loc) · 3.5 KB
/
HowToPlay.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="PFBv01.HowToPlay"
Title="How to Play">
<ScrollView>
<VerticalStackLayout Padding="10">
<!-- Add a spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Label Text="Swipe the colorful spinning number wheels up or down to select your 3 digits, then press Guess."
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start" />
<!-- Add a spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Label Text="Each guess is graded with a clue to help you solve as noted below:"
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start" />
<Label Text="F = (Fermi) Right Number Right Spot"
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start"
Margin="40,0,0,0" />
<Label Text="P = (Pico) Right Number Wrong Spot"
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start"
Margin="40,0,0,0" />
<Label Text="B = (Bagel) Wrong Number"
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start"
Margin="40,0,0,0" />
<!-- Add a spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Label Text="Double-Tap the numbers below the spinning number wheels to help you keep track of numbers you have eliminated."
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start" />
<!-- Add another spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Label Text="Win or Lose, the spinning number wheels will be set to the right number at the end."
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start" />
<!-- Add a spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Label Text="Double-Tap the game end animations to uncover blocked grading."
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start" />
<!-- Add a spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<!-- Add a spacer Label with no text -->
<Label Text="" FontSize="16" HorizontalOptions="FillAndExpand" VerticalOptions="Start" />
<Label Text="Good luck!!"
FontSize="16"
HorizontalOptions="FillAndExpand"
VerticalOptions="Start" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>