如何将 DataGridViewComboBoxColumn 绑定到 OnChange 事件 (C#)
我有一个标准的 DataGridView,我的最后一列是 DataGridViewComboBoxColumn。 我想添加一个事件,以便当该列中任何行的选定索引发生更改时,都会触发一个事件并将该数据保存到数据库中。
我为此苦苦挣扎了一个小时左右,找不到任何会触发此问题的事件...
任何帮助将不胜感激!
I have a standard DataGridView
, and my last column is a DataGridViewComboBoxColumn
.
I would like to add an event so that when the selected index of any of the rows in that column changes, an event is triggered and I save that data to db.
I'm struggling with this for an hour or so and couldn't find any event that would trigger this...
Any help would be appreciated!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
DataGridView
的EditingControlShowing
事件中,将一个方法附加到组合框SelectedIndexChanged
事件。例如:
现在在下面的方法中你可以做任何你想做的事情:
In the
EditingControlShowing
event of theDataGridView
attach a method to the comboboxSelectedIndexChanged
event.For example:
Now in the below method you can do whatever you want:
你可以尝试一下这些行
组合框是一个编辑控件,所以
现在在这种情况下你可以做你的事情
但是否要求每次索引更改都需要访问数据库?
You can try something on these lines
The combobox is an editing control, so
Now in that event you can do your stuff
But is it required that for every index change you would be hitting the database?