我想綁定一個組合框,在datagridview裏面使用下面的代碼和綁定工作正常,但通過嘲諷組合框文本是空的。我怎麼可以顯示由defult.My碼組合框的文本的第一個值是如何顯示gridviewcombobox文本中的第一個值默認
DataTable dt1 = connection.SelectCommand("select jobcode from jobsitemaster");
foreach (DataGridViewRow row in dataGridView1.Rows)
{
DataGridViewComboBoxCell cell = (DataGridViewComboBoxCell)(row.Cells["jobcode"]);
cell.ValueMember = "jobcode";
cell.DisplayMember = "jobcode";
cell.DataSource = dt1;
}
WinForms?的WebForms? WPF? –