新しい行が追加されると、最初は DataGridViewComboBoxCell に空白が表示されます。しかし、私の問題は、デフォルト値をどのように設定するかです。 DataGridViewComboBoxCell.So 新しい行を追加しようとするたびに、デフォルトの項目が表示されます。
私のコードをお見せしたいと思います。
DataGridViewComboBoxCellomboItem_current = dataGridView1.CurrentRow.Cells[2] as DataGridViewComboBoxCell;
comboItem_current.Items.Clear();
comboItem_current.Items.Add("Other");
foreach (DataRow dr in ds_Item.Tables[0].Rows)
{
DataGridViewComboBoxCell comboItem1 = dataGridView1.CurrentRow.Cells[2] as DataGridViewComboBoxCell;
comboItem1.Items.Add(dr[1].ToString());
}
助けてください....ありがとう