-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathHelpPage.xaml
153 lines (137 loc) · 8.12 KB
/
HelpPage.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<Page
x:Class="VBA10.HelpPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:VBA10"
xmlns:ctl="using:VBA10.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
x:Name="LayoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid x:Name="titleBar"
Height="48"
Background="{ThemeResource SystemControlBackgroundChromeMediumBrush}">
<TextBlock x:Name="title"
Style="{StaticResource PageTitleTextBlockStyle}" Text="**HELP"
x:Uid="HELP"/>
</Grid>
<Pivot Grid.Row="1" >
<PivotItem Header="**How to"
x:Uid="HowTo"
Margin="0"
>
<ScrollViewer HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto"
>
<StackPanel Orientation="Vertical"
HorizontalAlignment="Left"
MaxWidth="440"
Margin="12,0">
<TextBlock Text="**How to restore saves"
Style="{ThemeResource BaseTextBlockStyle}"
x:Uid="HowToRestoreSave"/>
<TextBlock TextWrapping="Wrap"
Margin=" 0, 0, 0, 4"
Text="**Instruction"
x:Uid="RestoreSaveInstruction"
>
<!--<Run>1. Quit the app completelely.</Run><LineBreak/>
<Run>2. Make sure the name of the save file match the name
of the rom exactly (except the extension).</Run><LineBreak/>
<Run>3. Open the app and import the save file.</Run><LineBreak/>
<Run>4. Start the game.</Run><LineBreak/>-->
</TextBlock>
</StackPanel>
</ScrollViewer>
</PivotItem>
<PivotItem Header="**About"
x:Uid="About"
Margin="0">
<ScrollViewer HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto"
>
<StackPanel Orientation="Vertical"
HorizontalAlignment="Left"
MaxWidth="440"
Margin="12,0"
>
<TextBlock TextWrapping="Wrap" >
<Run Text="VBA10"/>
</TextBlock>
<TextBlock TextWrapping="Wrap" Name="versionBlock"
Text="**Version: check .cpp">
</TextBlock>
<TextBlock TextWrapping="Wrap" Name="contactBlock"
Tapped="contactBlock_Tapped"
>
<Run Text="**Contact: "
x:Uid="Contact"/>
<Underline>
<Run Foreground="#4444D9">[email protected]</Run>
</Underline>
</TextBlock>
<TextBlock TextWrapping="Wrap" >
<LineBreak />
<Run Text="**Credits:" x:Uid="Credits"/>
<LineBreak />
<Run Text="- Eddi Bento for logo design."/>
<LineBreak />
<Run Text="- 汉化-智机网abc2419."/>
<LineBreak />
<Run Text="- Matteo Santoro for Italian translation."/>
<LineBreak />
<Run Text="- Òscar Sánchez for Catalan translation."/>
<LineBreak />
<Run Text="- Rahadian Rihadi for Indonesian translation."/>
<LineBreak />
<Run Text="- Luiz Alberto for Brazillian Portuguese translation."/>
<LineBreak />
<Run Text="- Vladislav Beliy for Ukrainian translation."/>
<LineBreak />
<Run Text="- Vladimir Volkov for Russian translation."/>
<LineBreak />
<Run Text="- Andrés Ricaurte for Spanish translation."/>
<LineBreak />
<Run Text="- Danupol Intranurak for Thai translation."/>
<LineBreak />
<Run Text="- Ali Ciddi for Turkish translation."/>
<LineBreak />
<Run Text="- Flávio Marta for European Portuguese translation."/>
<LineBreak />
<Run Text="- Simon Kudsk for Danish translation."/>
<LineBreak />
<Run Text="- Gijs Hoedemaker for Dutch translation."/>
<LineBreak />
<Run Text="- Matthias Tomasetig for German translation."/>
<LineBreak />
<LineBreak />
<Run Text="The author is not responsible for any illegal use of this software. Further more, there is no warranty for this software and the author is not liable for any damages."/>
<LineBreak/>
<LineBreak/>
<Run Text="This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or(at your option) any later version. "/>
<LineBreak/>
<LineBreak/>
<Run Text="This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. "/>
<LineBreak/>
<LineBreak/>
<Run Text="You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."/>
<LineBreak/>
</TextBlock>
<TextBlock Text="You can receive the source code by sending an email request to to [email protected]. Your request should include: (i) the name of the covered binary, (ii) your name, (iii) your company name (if applicable) and (iv) your return email address. Your request must be sent within three (3) years of the date you received the GPL covered code. "
TextWrapping="Wrap"
/>
<Button Name="gplButton" Content="GNU Public License v3"
Click="gplButton_Click"
Margin="0,8,0,8"/>
</StackPanel>
</ScrollViewer>
</PivotItem>
</Pivot>
</Grid>
</Page>