|
1 |
| -<Page |
| 1 | +<Page xmlns:my="using:Microsoft.Toolkit.Uwp.UI.Controls" |
2 | 2 | x:Class="Files.SettingsPages.About"
|
3 | 3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
4 | 4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
8 | 8 | mc:Ignorable="d"
|
9 | 9 | Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
10 | 10 |
|
11 |
| - <Grid Padding="24,24,0,0"> |
12 |
| - |
13 |
| - <ScrollViewer> |
14 |
| - <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
15 |
| - <TextBlock x:Name="Header" Text="Files UWP" Margin="0,0,0,5" FontFamily="Segoe UI Black" FontWeight="Bold" FontSize="40" HorizontalAlignment="Left" VerticalAlignment="Top" /> |
16 |
| - <TextBlock Margin="0,0,0,5" FontFamily="Segoe UI" FontSize="20" Text="Product Information"/> |
17 |
| - <TextBlock FontSize="14" Text="Edition: Pre-Release"/> |
18 |
| - <TextBlock FontSize="14" x:Name="VersionNumber" Text="Version: 0.5.0"/> |
19 |
| - <ListView IsItemClickEnabled="True" Margin="0,24,0,0" ItemClick="ListView_ItemClick" HorizontalAlignment="Left" Width="875"> |
20 |
| - <ListViewItem IsEnabled="True" Name="FeedbackForm" Height="65" HorizontalAlignment="Stretch"> |
21 |
| - <StackPanel Orientation="Horizontal"> |
22 |
| - <FontIcon Margin="0,0,25,0" Glyph=""/> |
23 |
| - <StackPanel Orientation="Vertical"> |
24 |
| - <TextBlock Text="Submit Feedback"/> |
25 |
| - <TextBlock Text="Submit an issue report to provide the developers with information" Foreground="Gray"/> |
26 |
| - </StackPanel> |
| 11 | + <Grid> |
| 12 | + <Grid.RowDefinitions> |
| 13 | + <RowDefinition Height="Auto"/> |
| 14 | + <RowDefinition Height="*"/> |
| 15 | + </Grid.RowDefinitions> |
| 16 | + <StackPanel Spacing="24" Padding="24,14" Orientation="Horizontal" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
| 17 | + <Grid Height="150" Width="150"> |
| 18 | + <my:DropShadowPanel OffsetY="15"> |
| 19 | + <Image Stretch="Uniform" Source="/Assets/Files UWP Icon.png"/> |
| 20 | + </my:DropShadowPanel> |
| 21 | + </Grid> |
| 22 | + |
| 23 | + <StackPanel Margin="0,0" Orientation="Vertical" VerticalAlignment="Center"> |
| 24 | + <TextBlock x:Name="Header" Text="Files UWP" FontFamily="Segoe UI Black" FontWeight="Bold" FontSize="40" HorizontalAlignment="Left" VerticalAlignment="Top" /> |
| 25 | + <TextBlock Margin="0,0,0,5" FontFamily="Segoe UI" FontSize="20" Text="Product Information"/> |
| 26 | + <TextBlock FontSize="14" Text="Edition: Pre-Release"/> |
| 27 | + <TextBlock FontSize="14" x:Name="VersionNumber" Text="Version: 0.5.0"/> |
| 28 | + </StackPanel> |
| 29 | + |
| 30 | + </StackPanel> |
| 31 | + |
| 32 | + |
| 33 | + <Grid Padding="14" Grid.Row="1" > |
| 34 | + <TextBlock Text="The community thanks contributors: SOI7, jeffsieu, and yaichenbaum for the design of our wonderful icon."/> |
| 35 | + <ListView IsItemClickEnabled="True" Margin="0,24,0,0" ItemClick="ListView_ItemClick" HorizontalAlignment="Left" Width="875"> |
| 36 | + <ListViewItem IsEnabled="True" Name="FeedbackForm" Height="65" HorizontalAlignment="Stretch"> |
| 37 | + <StackPanel Orientation="Horizontal"> |
| 38 | + <FontIcon Margin="0,0,25,0" Glyph=""/> |
| 39 | + <StackPanel Orientation="Vertical"> |
| 40 | + <TextBlock Text="Submit Feedback"/> |
| 41 | + <TextBlock Text="Submit an issue report to provide the developers with information" Foreground="Gray"/> |
27 | 42 | </StackPanel>
|
| 43 | + </StackPanel> |
| 44 | + |
| 45 | + </ListViewItem> |
| 46 | + </ListView> |
| 47 | + </Grid> |
28 | 48 |
|
29 |
| - </ListViewItem> |
30 |
| - </ListView> |
31 |
| - </StackPanel> |
32 |
| - </ScrollViewer> |
33 | 49 | </Grid>
|
34 | 50 | </Page>
|
0 commit comments