我正在使用以下代码在我的 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
这个组合框列的事件?