我一直试图在过去的4个小时内设置单个DataGridViewComboBoxCell的值,但我一直无处可去。我见过的最常见的解决方案是将DataGridViewComboBoxCell的.Value成员设置为其中一个Items,我尝试了它并且它抱怨该值无效。
DataTable documentTypes = _codedValues.GetCodedValues(Database.DOCUMENT_TYPE_TABLE); documentTypes.Columns[Database.PROFESSION_ID_COLUMN].AllowDBNull = true;
documentTypes.Columns[Database.CODE].AllowDBNull = true;
this.cbxDocumentType.DisplayMember = Database.VALUE;
this.cbxDocumentType.ValueMember = Database.CODE;
this.cbxDocumentType.DataSource = documentTypes.DefaultView;
int rowId = this.dgvDocumentList.Rows.Add(doc.actualName, doc.fileName);
DataGridViewComboBoxCell obj = (DataGridViewComboBoxCell)this.dgvDocumentList.Rows[rowId].Cells[2];
obj.Value = obj.Items[0];
在消息框出现后告诉我DataGridViewComboBoxCell视图无效,我看到正在设置的对象的.ToString输出,即System.Data.DataRowValue。
答案 0 :(得分:0)
根据数据源包含的内容,您必须使用正确的强制转换来访问正确的字段。
试试这个:
DataGridViewComboBoxCell cell =
(DataGridViewComboBoxCell)this.dgvDocumentList.Rows[rowId].Cells[2];
cell.Value = ((DataRowView)cell.Items[0]).Row.ItemArray[0];
这假定Items
为DataRowViews
且ValueMember
位于第一个字段中。
您可以通过编写中间步骤来测试类型:
var item = cell.Items[0];
使用调试器查看结果类型..