我的页面上有以下代码。
<Page
x:Class="MyPage.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyProject"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<ScrollViewer>
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="10*" />
<RowDefinition Height="400*" />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="Some Header" FontSize="48" Margin="100, 50, 0, 0" />
<local:CustomGridView Grid.Row="1" HorizontalAlignment="Left" Margin="100, 0, 0, 0" ItemsSource="{Binding CollectionOfYears}">
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid Orientation="Vertical" />
</ItemsPanelTemplate>
</GridView.ItemsPanel>
<GridView.ItemTemplate>
<DataTemplate>
<Grid Height="200" Width="200">
<Grid.Background>
<SolidColorBrush Color="{Binding Color}" />
</Grid.Background>
<StackPanel VerticalAlignment="Bottom">
<StackPanel.Background>
<SolidColorBrush Color="Black" Opacity="0.5" />
</StackPanel.Background>
<TextBlock FontSize="24" Margin="10" TextAlignment="Center" Text="{Binding Year}" />
</StackPanel>
</Grid>
</DataTemplate>
</GridView.ItemTemplate>
</local:CustomGridView>
</Grid>
</ScrollViewer>
</Page>
现在,我得到以下图像作为我的页面。
https://skydrive.live.com/redir?resid=59DBB22BE5D0430E!279
如何让gridview填满剩余空间,即填充文本块后留下的空间?然后我如何让 variablesizewrapgrid 向右流动而不是向下流动,同时仍然填充第一个下方的第二个瓷砖,依此类推?
编辑:我希望在组中完成 Windows 商店。一件大件物品,其余的只是包裹它。