我有我的数据列表
System.Collections.Generic.List<System.Collections.Generic.Dictionary<string,object>>
我已将其分配给可枚举类型
public IEnumerable Result;
Result = Datasource.DataSourceCreator.ToDataSource( System.Collections.Generic.List<System.Collections.Generic.Dictionary<string,object>>);
我将该 ienumerable 绑定到我的 wpf 应用程序中的数据网格的 itemsource。我如何通过遍历这个字典列表来对我的数据网格进行分页?提前谢谢,如果你能解决我的问题。