当 DatagridView 中的从属列时,如何过滤数据,因为先前选定的项目消失了
在我的 datagridview
中,有两个依赖列,一个是类别,另一个是项目。所以我想根据所选类别过滤我的项目列列表。
但问题是,当我将类别数据更改为项目组合框的数据源时,以前选定的项目名称会消失,因为以前的项目不在当前数据源中。
那么此类问题的正确解决方案是什么。
In my datagridview
there are two dependent columns, one is category and the other is items. So I want to filter my item column list as per selected category.
But the problem is that when I change the category wise data to datasource of items combobox, previous selected items names disappear because previous items is not in current datasource.
So what is correct solution of such problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用数据视图筛选列: http://msdn.microsoft.com /en-us/library/system.data.dataview.aspx
根据输入验证和其他情况,您可以在编辑操作后更新数据源。
Filter columns with a Dataview: http://msdn.microsoft.com/en-us/library/system.data.dataview.aspx
Depending on input validation and what not, you can update the DataSource after an edit operation.