|
8 | 8 | mc:Ignorable="d" |
9 | 9 | Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
10 | 10 |
|
11 | | - <Grid Padding="50,100,50,0"> |
12 | | - |
13 | | - <StackPanel> |
14 | | - <TextBlock x:Name="Header" Text="Preferences" Margin="0,0,0,25" FontFamily="Segoe UI Black" FontWeight="Bold" FontSize="48" HorizontalAlignment="Left" VerticalAlignment="Top" /> |
15 | | - <Grid Name="CustomLibraries"> |
16 | | - <StackPanel Orientation="Vertical"> |
17 | | - <TextBlock Text="Custom Library Locations - Still In Development"/> |
18 | | - <ToggleSwitch IsEnabled="False" VerticalAlignment="Top"/> |
19 | | - <Grid Margin="0, 0, 0, 12.5"> |
20 | | - <TextBlock Text="Downloads" VerticalAlignment="Center" Margin="0,0,25,0"/> |
21 | | - <TextBox BorderThickness="1" PlaceholderText="Custom Downloads Location" HorizontalAlignment="Left" Width="500" Margin="125,0,0,0"/> |
22 | | - </Grid> |
23 | | - <Grid Margin="0, 0, 0, 12.5"> |
24 | | - <TextBlock Text="Documents" VerticalAlignment="Center" Margin="0,0,25,0"/> |
25 | | - <TextBox BorderThickness="1" PlaceholderText="Custom Documents Location" HorizontalAlignment="Left" Width="500" Margin="125,0,0,0"/> |
26 | | - </Grid> |
27 | | - <Grid Margin="0, 0, 0, 12.5"> |
28 | | - <TextBlock Text="Pictures" VerticalAlignment="Center" Margin="0,0,25,0"/> |
29 | | - <TextBox BorderThickness="1" PlaceholderText="Custom Pictures Location" HorizontalAlignment="Left" Width="500" Margin="125,0,0,0"/> |
30 | | - </Grid> |
31 | | - <Grid Margin="0, 0, 0, 12.5"> |
32 | | - <TextBlock Text="Music" VerticalAlignment="Center" Margin="0,0,25,0"/> |
33 | | - <TextBox BorderThickness="1" PlaceholderText="Custom Music Location" HorizontalAlignment="Left" Width="500" Margin="125,0,0,0"/> |
34 | | - </Grid> |
35 | | - <Grid Margin="0, 0, 0, 12.5"> |
36 | | - <TextBlock Text="Videos" VerticalAlignment="Center" Margin="0,0,25,0"/> |
37 | | - <TextBox BorderThickness="1" PlaceholderText="Custom Videos Location" HorizontalAlignment="Left" Width="500" Margin="125,0,0,0"/> |
38 | | - </Grid> |
39 | | - </StackPanel> |
40 | | - </Grid> |
41 | | - </StackPanel> |
| 11 | + <Grid Padding="24,35,24,0"> |
| 12 | + <Grid.ColumnDefinitions> |
| 13 | + <ColumnDefinition Width="80*"/> |
| 14 | + <ColumnDefinition Width="20*"/> |
| 15 | + </Grid.ColumnDefinitions> |
| 16 | + <ScrollViewer> |
| 17 | + <StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
| 18 | + <TextBlock x:Name="Header" Text="Preferences" Margin="0,0,0,25" FontFamily="Segoe UI Black" FontWeight="Bold" FontSize="48" HorizontalAlignment="Left" VerticalAlignment="Top" /> |
| 19 | + <Grid Name="CustomLibraries"> |
| 20 | + <StackPanel Orientation="Vertical"> |
| 21 | + <TextBlock Text="Custom Locations - Still In Development"/> |
| 22 | + <ToggleSwitch IsEnabled="False" VerticalAlignment="Top"/> |
| 23 | + <Grid Margin="0, 0, 0, 12.5"> |
| 24 | + <TextBlock Text="Downloads" VerticalAlignment="Center" Margin="0,0,25,0" HorizontalAlignment="Left"/> |
| 25 | + <TextBox BorderThickness="1" PlaceholderText="Custom Downloads Location" HorizontalAlignment="Left" Margin="125,0,0,0" Width="500"/> |
| 26 | + </Grid> |
| 27 | + <Grid Margin="0, 0, 0, 12.5"> |
| 28 | + <TextBlock Text="Documents" VerticalAlignment="Center" Margin="0,0,25,0" HorizontalAlignment="Left"/> |
| 29 | + <TextBox BorderThickness="1" PlaceholderText="Custom Documents Location" HorizontalAlignment="Left" Margin="125,0,0,0" Width="500"/> |
| 30 | + </Grid> |
| 31 | + <Grid Margin="0, 0, 0, 12.5"> |
| 32 | + <TextBlock Text="Pictures" VerticalAlignment="Center" Margin="0,0,25,0" HorizontalAlignment="Left"/> |
| 33 | + <TextBox BorderThickness="1" PlaceholderText="Custom Pictures Location" HorizontalAlignment="Left" Margin="125,0,0,0" Width="500"/> |
| 34 | + </Grid> |
| 35 | + <Grid Margin="0, 0, 0, 12.5"> |
| 36 | + <TextBlock Text="Music" VerticalAlignment="Center" Margin="0,0,25,0" HorizontalAlignment="Left"/> |
| 37 | + <TextBox BorderThickness="1" PlaceholderText="Custom Music Location" HorizontalAlignment="Left" Margin="125,0,0,0" Width="500"/> |
| 38 | + </Grid> |
| 39 | + <Grid Margin="0, 0, 0, 12.5"> |
| 40 | + <TextBlock Text="Videos" VerticalAlignment="Center" Margin="0,0,25,0" HorizontalAlignment="Left"/> |
| 41 | + <TextBox BorderThickness="1" PlaceholderText="Custom Videos Location" HorizontalAlignment="Left" Margin="125,0,0,0" Width="500"/> |
| 42 | + </Grid> |
| 43 | + </StackPanel> |
| 44 | + </Grid> |
| 45 | + </StackPanel> |
| 46 | + </ScrollViewer> |
42 | 47 | </Grid> |
43 | 48 | </Page> |
0 commit comments