-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelpPage.xaml
50 lines (49 loc) · 3.66 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
<Page
x:Class="FileEx.HelpPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:FileEx"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Page.Transitions>
<TransitionCollection>
<ContentThemeTransition HorizontalOffset="0"/>
</TransitionCollection>
</Page.Transitions>
<Grid>
<ScrollViewer>
<ScrollViewer.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" Opacity="0.3">
<GradientStop Color="Black" Offset="0"/>
<GradientStop Offset="0.02"/>
</LinearGradientBrush>
</ScrollViewer.Background>
<StackPanel Margin="10,0">
<Button Content="TOUR FILE360" Visibility="Collapsed"/>
<TextBlock Text="copy or move" Style="{StaticResource GroupHeaderTextBlockStyle}" />
<TextBlock Text="long press to select file(s) and press the clipboard button to copy the selected file(s) to clipboard." TextWrapping="Wrap"/>
<TextBlock Text="sdcard" Style="{StaticResource GroupHeaderTextBlockStyle}" />
<TextBlock Text="select sdcard from folder picker to view files in sd. " TextWrapping="Wrap"/>
<TextBlock Text="phone" Style="{StaticResource GroupHeaderTextBlockStyle}" />
<TextBlock Text="to view all the folders. add all the folders in phone memory to this app." TextWrapping="Wrap"/>
<TextBlock Text="navigation" Style="{StaticResource GroupHeaderTextBlockStyle}" />
<TextBlock Text="navigate using the sidebar which can be accessed by sliding from left." TextWrapping="Wrap"/>
<TextBlock Text="settings" Style="{StaticResource GroupHeaderTextBlockStyle}" />
<TextBlock Text="settings can be found in the bottom of the sidebar page" TextWrapping="Wrap"/>
<TextBlock Text="music & video player" Style="{StaticResource GroupHeaderTextBlockStyle}" />
<TextBlock Text="you can open player from the sidebar by clicking the now playing button" TextWrapping="Wrap"/>
<TextBlock Text="about" HorizontalAlignment="Center" FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue"/>
<Rectangle Height="128" Width="250">
<Rectangle.Fill>
<ImageBrush Stretch="Uniform" ImageSource="Assets/ARAM.png"/>
</Rectangle.Fill>
</Rectangle>
<TextBlock Text="developed and produced by," FontSize="18" FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue" TextAlignment="Center"/>
<HyperlinkButton FontSize="{StaticResource ContentControlFontSize}" Content="Ulōka" HorizontalAlignment="Center" Background="{x:Null}" FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue" Foreground="{ThemeResource SystemAccentColor}"/>
<TextBlock Margin="10,5" HorizontalAlignment="Center" TextWrapping="Wrap" Text="thankyou for choosing FILE360. This is a premium version." FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue" FontSize="20" TextAlignment="Center"/>
</StackPanel>
</ScrollViewer>
</Grid>
</Page>