我的页面上有以下代码。
<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商店完成。一个大项目,其余的只是环绕它。
答案 0 :(得分:0)
行。想出了问题。
步骤1:删除滚动查看器。
步骤2:将网格中第一行的高度设置为某个固定值。
步骤3:将网格中第二行的高度设置为*。
步骤4:去除文本块上的边距。
步骤5:在网格视图上使用填充而不是边距。
这将有助于解决其中一些问题。