如何在筛选行时将 DataTable 绑定到 WPF DataGrid 并进行双向绑定

发布于 2024-12-06 12:06:43 字数 235 浏览 0 评论 0 原文

我有一个代表 SQL 表的 DataTable。 SQL 表以父/子方式引用自身,但只有一级(父级本身不能有父级)

我想将此 DataTable 绑定到 DataGrid,以便我可以编辑 DataGrid 上的行并添加新行和这应该传播到数据表。到目前为止,这很容易。

但现在我只想显示有父级的行。据我了解,如果我使用 CollectionView 来过滤数据,网格上的更改将不会传播到 DataTable。那么我该怎么做呢?

I have a DataTable that represents a SQL table. The SQL table references itself in a parent/child manner, but only one level (a parent can't have a parent itself)

I want to bind this DataTable to a DataGrid so i can edit the rows on the DataGrid and add new Rows and this should be propagated to the DataTable. So far it's easy.

But now i want to display only the rows that have a parent. From what i understand, if i use a CollectionView to filter the data the changes on the grid won't be propagated to the DataTable. So how can i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

赴月观长安 2024-12-13 12:06:43

如果您尝试设置默认视图行过滤器会发生什么?

var dv = yourDataTableInstance.DefaultView;
dv.RowFilter = "parentcolumn IS NOT NULL";

DataGrid 的 ItemsSource 仍然是数据表,但现在应该对其进行过滤。

what happens if you try to set the defaultview Rowfilter?

var dv = yourDataTableInstance.DefaultView;
dv.RowFilter = "parentcolumn IS NOT NULL";

ItemsSource for the DataGrid is still the datatable but it should be filtered now.

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