我采用了标准的Item GridView模板并对其进行了一些修改以满足我的需求。实际上我对模板代码的改动很少。
我有一个小组,我有很多项目(92项)。 listview确实渲染了其中一些,但它只渲染了其中的12个。这是为什么?如何覆盖它并使其显示所有项目?
这是我在设置DefaultViewModel时打入调试器的屏幕截图:
我将项目添加到我的列表视图中(因为我从服务中解析XML):
DataSource.AddItem(new DataItem(... title, name, etc, DataSource.getGroup("gallery")));
然后在我的DataSource类中(这与示例完全相同,我只是将其重命名),我添加了这个方法:
public static void AddItem(DataItem item)
{
item.Group.Items.Add(item);
}
以下是呈现它的XAML(与GridView模板相同:
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
<GridView.GroupStyle>
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<Grid Margin="1,0,0,6">
<Button
AutomationProperties.Name="Group Title"
Content="{Binding Title}"
Click="Header_Click"
Style="{StaticResource TextButtonStyle}"/>
</Grid>
</DataTemplate>
</GroupStyle.HeaderTemplate>
<GroupStyle.Panel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid Orientation="Vertical" Margin="0,0,80,0"/>
</ItemsPanelTemplate>
</GroupStyle.Panel>
</GroupStyle>
</GridView.GroupStyle>
</GridView>
我真的很感激任何帮助。
答案 0 :(得分:7)
网格应用程序模板将每个组中显示的项目数量限制为12,原因如下所示:
public class SampleDataGroup : SampleDataCommon
{
...
public IEnumerable<SampleDataItem> TopItems
{
// Provides a subset of the full items collection to bind to from a GroupedItemsPage
// for two reasons: GridView will not virtualize large items collections, and it
// improves the user experience when browsing through groups with large numbers of
// items.
//
// A maximum of 12 items are displayed because it results in filled grid columns
// whether there are 1, 2, 3, 4, or 6 rows displayed
get { return this._items.Take(12); }
}
}