以编程方式在DataGridView中设置组合框的选定索引

本文关键字:索引 组合 设置 方式 编程 DataGridView | 更新日期: 2023-09-27 18:11:21

我想在避免数据绑定的同时,在DataGridView的ComboBox中设置选定的索引。没有连接到数据库

我发现的所有解决方案都有DataGridView连接到数据库,而我没有,所以我无法解决这个问题。

以编程方式在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";
    }