C# winform中datagridview的下拉框怎么用,如何绑定List数据源
本人返回结果集为:
List<KeyValuePair<string, string>> list;
我将datatable传入子窗口,并绑定到datagridview中,然后要把单元格转换成下拉框的形式,并且将list数据源绑定到下拉框,求大神指点!
------解决方案--------------------
((DataGridViewComboBoxCell)dgvStudentList.Rows[0].Cells["Student"]).DataSource = list;
((DataGridViewComboBoxCell)dgvStudentList.Rows[0].Cells["Student"]).ValueMember = "StuNum";
((DataGridViewComboBoxCell)dgvStudentList.Rows[0].Cells["Student"]).DisplayMember = "StuName";
------解决方案--------------------
这个就可以啊, 你类型无法转换, 说明你选择的那个 CELL 不是 Combobox 列