DataGridViewComboBoxCell 的事件
我正在使用以下代码在 winform 的网格视图中绑定组合框列
DataGridViewComboBoxCell dgBatch = (DataGridViewComboBoxCell)grvProduct.Rows[pRowIndex].Cells[pComboColName];
DataTable dtBatch = new DataTable();
dtBatch = iExportSalesOrder.SelectProductDetails(pack_detl_ID);
dgBatch.DataSource = dtBatch;
dgBatch.ValueMember = "qty";
dgBatch.DisplayMember = "sBatch_No";
如何获取此组合框列的 selectedindexchange
事件?
I am using the following code for binding a combo box column in a grid view in my winform
DataGridViewComboBoxCell dgBatch = (DataGridViewComboBoxCell)grvProduct.Rows[pRowIndex].Cells[pComboColName];
DataTable dtBatch = new DataTable();
dtBatch = iExportSalesOrder.SelectProductDetails(pack_detl_ID);
dgBatch.DataSource = dtBatch;
dgBatch.ValueMember = "qty";
dgBatch.DisplayMember = "sBatch_No";
How can i get the selectedindexchange
event of this combo box column?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 DataGridView.EditingControlShowing 事件并将 EventArgs 转换为 ComboBox 控件,然后可以使用 SelectesIndexChanged 事件。
You could try using the DataGridView.EditingControlShowing event and casting the EventArgs to a ComboBox control and then you can use the SelectesIndexChanged event.