|
47 | 47 | <ColumnDefinition Width="1000*" MaxWidth="350"/> |
48 | 48 | <ColumnDefinition Width="*"/> |
49 | 49 | </Grid.ColumnDefinitions> |
50 | | - <StackPanel Orientation="Vertical" Grid.Column="1"> |
51 | | - <widgets:TranslatedTextBlock HorizontalAlignment="Center" Text="Popular packages" FontWeight="Bold" FontSize="20" MinHeight="40"/> |
| 50 | + <StackPanel Orientation="Vertical" Grid.Column="1" Spacing="8"> |
| 51 | + <widgets:TranslatedTextBlock HorizontalAlignment="Center" Text="Popular packages" FontWeight="Bold" FontSize="20" MinHeight="32"/> |
| 52 | + <RichTextBlock Name="PopularDescription" TextAlignment="Center"> |
| 53 | + <Paragraph/> |
| 54 | + </RichTextBlock> |
52 | 55 | <ItemsRepeater ItemTemplate="{StaticResource PackageRankingEntry}" ItemsSource="{x:Bind PopularRank}"/> |
| 56 | + <HyperlinkButton HorizontalAlignment="Stretch"> |
| 57 | + <widgets:TranslatedTextBlock Text="View more packages"/> |
| 58 | + </HyperlinkButton> |
53 | 59 | </StackPanel> |
54 | | - <StackPanel Orientation="Vertical" Grid.Column="2"> |
55 | | - <widgets:TranslatedTextBlock HorizontalAlignment="Center" Text="The most installed" FontWeight="Bold" FontSize="20" MinHeight="40"/> |
| 60 | + <StackPanel Orientation="Vertical" Grid.Column="2" Spacing="8"> |
| 61 | + <widgets:TranslatedTextBlock HorizontalAlignment="Center" Text="The most installed" FontWeight="Bold" FontSize="20" MinHeight="32"/> |
| 62 | + <RichTextBlock Name="InstalledDescription" TextAlignment="Center"> |
| 63 | + <Paragraph/> |
| 64 | + </RichTextBlock> |
56 | 65 | <ItemsRepeater ItemTemplate="{StaticResource PackageRankingEntry}" ItemsSource="{x:Bind InstalledRank}"/> |
57 | | - |
| 66 | + <HyperlinkButton HorizontalAlignment="Stretch" > |
| 67 | + <widgets:TranslatedTextBlock Text="View more packages"/> |
| 68 | + </HyperlinkButton> |
58 | 69 | </StackPanel> |
59 | | - <StackPanel Orientation="Vertical" Grid.Column="3"> |
60 | | - <widgets:TranslatedTextBlock HorizontalAlignment="Center" Text="The most uninstalled" FontWeight="Bold" FontSize="20" MinHeight="40"/> |
| 70 | + <StackPanel Orientation="Vertical" Grid.Column="3" Spacing="8"> |
| 71 | + <widgets:TranslatedTextBlock HorizontalAlignment="Center" Text="The wall of shame" FontWeight="Bold" FontSize="20" MinHeight="32"/> |
| 72 | + <RichTextBlock Name="UninstalledDescription" TextAlignment="Center"> |
| 73 | + <Paragraph/> |
| 74 | + </RichTextBlock> |
61 | 75 | <ItemsRepeater ItemTemplate="{StaticResource PackageRankingEntry}" ItemsSource="{x:Bind WallOfShame}"/> |
| 76 | + <HyperlinkButton HorizontalAlignment="Stretch" > |
| 77 | + <widgets:TranslatedTextBlock Text="View more packages"/> |
| 78 | + </HyperlinkButton> |
62 | 79 | </StackPanel> |
63 | 80 | <Button VerticalAlignment="Top" HorizontalAlignment="Right" Grid.Column="4" Name="ReloadButton" Click="ReloadButton_Click">Reload</Button> |
64 | 81 | <ProgressRing IsIndeterminate="True" Visibility="Collapsed" Grid.Column="0" Grid.Row="0" Grid.ColumnSpan="5" Width="100" Height="100" Name="ReloadRing"/> |
|
0 commit comments