How can I add items to an existing combobox cell in a new datagridview row?
When the user wants to add a new row, this combobox must to have its values populated, so that the user can select one.
dataGridViewCellphones.AutoGenerateColumns = false;
DataGridViewRow row = (DataGridViewRow)dataGridViewCellphones.Rows[0].Clone();
DataGridViewComboBoxColumn countries= new
DataGridViewComboBoxColumn();
countries.DataSource = tempCountryList;
countries.DisplayMember = "EnglishName";
countries.ValueMember = "CountriesID";
row.Cells[1].Value = countries;
dataGridViewCellphones.Rows.Add(row);