paginate数据网格中的字典列表

本文关键字:字典 列表 网格 数据 数据网 paginate | 更新日期: 2023-09-27 17:53:48

我有我的数据列表

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。我如何通过遍历字典列表来分页我的数据网格??

paginate数据网格中的字典列表

WPF不提供内置分页支持的控件。
你需要自己实现它。

这篇文章可以帮助你实现这样的事情:

http://www.codeproject.com/Articles/20463/DataView-Paging-in-WPF

下面的链接可能会帮助你实现你的目标,

如何对WPF数据网格进行分页?

MSDN参考

另一个链接供参考

http://www.codeproject.com/Articles/350447/WPF-Paging-in-DataGrid-ListBox