如何在 MVVM 中实现分页?
我的用户控件中有一个 WPFToolkit Datagrid。我正在 mvvm 模式创建用户控件。如何在数据网格中实现分页?
是否有默认的分页机制或者我们是否必须使用自定义分页?
I have a WPFToolkit Datagrid inside my user control. I am creating my user contrrol in mvvm pattern. How can I implement paging in datagrid?
Is there any default paging mechanism or Do we have to go with custom paging ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了未来读者的利益:我刚刚在这里回答了几乎相同的问题,给出了全面实施的来源。
For the benefit of future readers: I just answered practically the same question here, giving the source of a full implementation.
Silverlight 工具包中有一个 PagedCollectionView 的实现
将其与互联网中的一些示例结合起来,您将立即进行寻呼
以下是一些使用 MVVM 和 CollectionView 获取 您开始
There is an implementation of a PagedCollectionView in the Silverlight toolkit
Combine this with some samples from the internet and you will have paging in no time
Here are some samples with MVVM and CollectionView to get you started