5
我有一個正常的GridView,顯示分組數據。我的目標是將標題(一個按鈕)從組頂部移到組左側。更改GridView標題位置
<GridView>
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
<GridView.GroupStyle>
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<Grid>
<Button Content="{Binding Title}"/>
</Grid>
</DataTemplate>
</GroupStyle.HeaderTemplate>
<GroupStyle.Panel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid ItemWidth="240" ItemHeight="160" Orientation="Vertical" Margin="0,0,80,0"/>
</ItemsPanelTemplate>
</GroupStyle.Panel>
</GroupStyle>
</GridView.GroupStyle>
<GridView.ItemTemplate>
<!-- item template -->
</GridView.ItemTemplate>
</GridView>
回答這個問題Grouping GridView in Windows 8 Metro App - 雖然不完全一樣所需的佈局 - 說,所需的佈局也不是沒有可能增加一個額外的「虛擬拼接」。
我想知道是否有可能實現我的目標 - 將標題從組頂部移到組左側 - 沒有這樣的額外「虛擬瓦片」。