HelpPage.xaml (3653B)
1 <Page 2 x:Class="File360.HelpPage" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 xmlns:local="using:File360" 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 8 mc:Ignorable="d" 9 RequestedTheme="Dark" 10 FontFamily="Segoe WP Light" FontSize="18.667"> 11 12 <Page.Transitions> 13 <TransitionCollection> 14 <ContentThemeTransition HorizontalOffset="0"/> 15 </TransitionCollection> 16 </Page.Transitions> 17 18 <Grid> 19 <ScrollViewer> 20 <ScrollViewer.Background> 21 <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" Opacity="0.3"> 22 <GradientStop Color="Black" Offset="0"/> 23 <GradientStop Offset="0.02"/> 24 </LinearGradientBrush> 25 </ScrollViewer.Background> 26 <StackPanel Margin="10,0"> 27 <Button Content="TOUR FILE360" Visibility="Collapsed"/> 28 <TextBlock Text="copy or move" Style="{StaticResource GroupHeaderTextBlockStyle}" /> 29 <TextBlock Text="long press to select file(s) and press the clipboard button to copy the selected file(s) to clipboard." TextWrapping="Wrap"/> 30 <TextBlock Text="sdcard" Style="{StaticResource GroupHeaderTextBlockStyle}" /> 31 <TextBlock Text="select sdcard from folder picker to view files in sd. " TextWrapping="Wrap"/> 32 <TextBlock Text="phone" Style="{StaticResource GroupHeaderTextBlockStyle}" /> 33 <TextBlock Text="to view all the folders. add all the folders in phone memory to this app." TextWrapping="Wrap"/> 34 <TextBlock Text="navigation" Style="{StaticResource GroupHeaderTextBlockStyle}" /> 35 <TextBlock Text="navigate using the sidebar which can be accessed by sliding from left." TextWrapping="Wrap"/> 36 <TextBlock Text="settings" Style="{StaticResource GroupHeaderTextBlockStyle}" /> 37 <TextBlock Text="settings can be found in the bottom of the sidebar page" TextWrapping="Wrap"/> 38 <TextBlock Text="music & video player" Style="{StaticResource GroupHeaderTextBlockStyle}" /> 39 <TextBlock Text="you can open player from the sidebar by clicking the now playing button" TextWrapping="Wrap"/> 40 <TextBlock Text="about" HorizontalAlignment="Center" Style="{StaticResource ComboBoxPlaceholderTextBlockStyle}" FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue"/> 41 <Rectangle Height="128" Width="250"> 42 <Rectangle.Fill> 43 <ImageBrush Stretch="Uniform" ImageSource="Assets/ARAM.png"/> 44 </Rectangle.Fill> 45 </Rectangle> 46 <TextBlock Text="developed and produced by," FontSize="18" FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue" TextAlignment="Center"/> 47 <HyperlinkButton FontSize="{StaticResource ContentControlFontSize}" Content="Ulōka" HorizontalAlignment="Center" Background="{x:Null}" FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue" Foreground="{ThemeResource PhoneAccentBrush}"/> 48 <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"/> 49 </StackPanel> 50 </ScrollViewer> 51 </Grid> 52 </Page>