我们如何创建页面来显示 WPF 中 DataGrid 中 DataTable 中的记录?

发布于 2024-10-26 21:30:53 字数 329 浏览 2 评论 0原文

例如,我有一个包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掐死时间 2024-11-02 21:30:53

尝试以编程方式将数据绑定到 DataGrid:

var perPage = 10;
var page = 2;

//Will bind rows 11-20 to the DataGrid
dataGrid.DataContext = DataTable.Rows.OfType<DataRow>().Skip(page*perPage).Take(perPage);

您将需要一些简单的按钮或链接来实现诸如“第一个”、“上一个”、“下一个”、“最后一个”或要跳转到的页码等操作。

Try programmatically databinding to your DataGrid:

var perPage = 10;
var page = 2;

//Will bind rows 11-20 to the DataGrid
dataGrid.DataContext = DataTable.Rows.OfType<DataRow>().Skip(page*perPage).Take(perPage);

You'll need some simple buttons or links to implement operations like First, Previous, Next, Last, or page numbers to jump to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文