DataGridViewComboBoxCell的选定值
本文关键字:DataGridViewComboBoxCell | 更新日期: 2023-09-27 18:05:56
我使用以下代码来绑定gridview
中的组合框列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";
我想在这个组合框中基于某个值设置一个particular item as selected
。如何设置selectedvalue in DataGridViewComboBoxCell
?
设置dgBatch.Value = "selectedValue"
应该可以工作
dgBatch[Column.Name, Row.Name].Value = value;