1
我想在避免數據綁定的情況下,將所選索引設置在DataGridView的ComboBox中。它沒有連接到數據庫。以編程方式在DataGridView中設置ComboBox的選定索引
我發現所有的解決方案都有DataGridView連接到數據庫,我沒有,所以我無法解決問題。
我想在避免數據綁定的情況下,將所選索引設置在DataGridView的ComboBox中。它沒有連接到數據庫。以編程方式在DataGridView中設置ComboBox的選定索引
我發現所有的解決方案都有DataGridView連接到數據庫,我沒有,所以我無法解決問題。
由於DataGridViewComboBoxColumn沒有selectedIndex或的SelectedValue的屬性,你可以嘗試設置的值這樣的例子:
DataGridViewComboBoxColumn cmbCurrencies = (DataGridViewComboBoxColumn)myDataGridView.Columns["ComboboxCurrencyColumn"];
var currencies = entities.currencies.Select(c => c.currencyName).DefaultIfEmpty().ToList();
cmbCurrencies.DataSource = currencies;
然後:
for (int i = 0; i <= myDataGridView.RowCount - 1; i++)
{
myDataGridView.Rows[i].Cells["Index of Combobox Column"].Value = "Pound";
}
也看看this可能會有幫助。
和你的問題是? – redFIVE
在DataGridViewComboBox中,以編程方式選擇一個索引。 –
您需要將單元格轉換爲datagridviewcomboboxcell .... – Codexer