file360

Log | Files | Refs

PersonalizationPage.xaml (1844B)


      1 <Page
      2     x:Class="File360.PersonalizationPage"
      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     xmlns:toolkit="using:WinRTXamlToolkit.Controls"
      9     mc:Ignorable="d"
     10     Foreground="White">
     11     
     12     <Grid>
     13         <Grid.RowDefinitions>
     14             <RowDefinition Height="Auto"/>
     15             <RowDefinition Height="*"/>
     16         </Grid.RowDefinitions>
     17         <StackPanel Orientation="Horizontal">
     18             <Button Style="{StaticResource DefaultButton}" MinWidth="20" Click="GoBack">
     19                 <StackPanel Orientation="Horizontal">
     20                     <TextBlock FontSize="35" TextAlignment="Center" Text="g" FontFamily="Assets/Font/settingsfont.ttf#settingsfont" Foreground="White"/>
     21                     <TextBlock Margin="10,0,0,0"
     22 				   HorizontalAlignment="Left"
     23                    TextWrapping="Wrap"
     24                    Text="PERSONALIZATION"
     25                    VerticalAlignment="Center"
     26                    FontFamily="Segoe WP Black"
     27                    FontSize="26.667" Foreground="White"/>
     28                 </StackPanel>
     29             </Button>
     30         </StackPanel>
     31         <ScrollViewer Margin="0,10,0,0" FontSize="30" Foreground="White" Grid.Row="1" Background="{x:Null}">
     32             <StackPanel>
     33                 <local:ColorPicker ColorSet="2" x:Name="folderColor" OptionName="Folder Color" />
     34                 <local:ColorPicker ColorSet="0" x:Name="accentColor" OptionName="App Accent Color" />
     35                 <local:ColorPicker ColorSet="1" x:Name="themeColor" OptionName="App Theme Color" />
     36             </StackPanel>
     37         </ScrollViewer>
     38     </Grid>
     39 </Page>