我们如何创建页面来显示 WPF 中 DataGrid 中 DataTable 中的记录?
例如,我有一个包含 30 行的 DataTable,但我只想显示 0 到 10 行。如果用户单击按钮(如前进或下一个),它将清除 DataGrid 中的项目并显示 10 到 20 之间 。
我想要的是分离页面集合中的记录,然后在 DataGrid 中显示并使用两个按钮(向前或下一个,向后或上一个)控制它们 可以做到吗?如何?
在这种情况下,如果可以将记录分开,我们在更新数据库中的表时不会有问题吗?
另外,如果我想过滤 DataGrid 中的记录,就像我们有一个 TextBox,我们键入一些内容,然后 DataGrid 仅显示具有与我们在 TextBox 中键入的值类似的值的记录。能做到吗?
I have a DataTable for example with 30 rows, but i only want to show from 0 to 10. And if the user clicks in a button (like forward or next), it will clear the Items in the DataGrid and shows between 10 and 20.
What i want is to separate records in a Collection of pages and then to show in DataGrid and control them with two buttons (forward or next, and backward or previous). It can be done? How?
In this case if it's possibly to separate the records in pages, we will not have problems to update the table in the DataBase?
And other thing, if i want to filter the records in my DataGrid, like if we have a TextBox, we type something, and then the DataGrid only shows the records with some value similar to that we have typed in the TextBox. Can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以编程方式将数据绑定到 DataGrid:
您将需要一些简单的按钮或链接来实现诸如“第一个”、“上一个”、“下一个”、“最后一个”或要跳转到的页码等操作。
Try programmatically databinding to your DataGrid:
You'll need some simple buttons or links to implement operations like First, Previous, Next, Last, or page numbers to jump to.