数据网格视图组合框列每行的值不同



我想使用 c# 创建一个带有组合框列的数据网格视图。

问题是我不知道如何在每行中为组合框提供不同的值。

DataTable dt = new DataTable();
dt.Columns.Add("state");
dt.Columns.Add("city");
dt.Rows.Add("a1", "b1");
dt.Rows.Add("a1", "b2");
dt.Rows.Add("a2", "b3");
dt.Rows.Add("a2", "b4");
dt.Rows.Add("a3", "b5");
DataGridViewComboBoxColumn comboStates = new DataGridViewComboBoxColumn();
comboStates.HeaderText = "HeaderText_1";
this.dataGridView1.Columns.Insert(0, comboStates);
DataGridViewComboBoxColumn comboCities = new DataGridViewComboBoxColumn();
comboCities.HeaderText = "HeaderText_2";
this.dataGridView1.Columns.Insert(1, comboCities);
for (int i = 0; i < dt.Rows.Count; i++)
{
    dataGridView1.Rows.Add();
    comboStates.Items.Add(dt.Rows[i][0]);
        DataGridViewComboBoxCell stateCell = (DataGridViewComboBoxCell)    (dataGridView1.Rows[i].Cells[0]);
    stateCell.Value = comboStates.Items[i];
    comboCities.Items.Add(dt.Rows[i][1]);
    DataGridViewComboBoxCell cityCell = (DataGridViewComboBoxCell)(dataGridView1.Rows[i].Cells[1]);
    cityCell.Value = comboCities.Items[i];
}

此示例给出以下结果:

对于每一行:

组合框列状态:

a1
a1
a2
a2
a3

组合框列城市 :

b1
b2
b3
b4
b5

我知道这是正常的,因为我正在循环访问数据表。

那么我怎样才能得到这个结果:

第 1 行:组合框列状态组合框列城市

             a1               b1 - b2

行 2:组合框列状态组合框列城市

             a2               b3 - b4

行 2:组合框列状态组合框列城市

             a3               b5

我是 C# 的新手。我搜索了很多,但没有找到解决此问题的解决方案。谢谢

下面是一个示例代码,应该可以帮助您入门。

首先,我为每个州创建一个值(城市(列表。为此,Dictionary系列派上用场:

Dictionary<string, List<string>> dict = new Dictionary<string, List<string>>();
for (int i = 0; i < dt.Rows.Count; i++)
{
    string state = dt.Rows[i][0].ToString();
    string city  = dt.Rows[i][1].ToString();
    if (! dict.Keys.Contains(state ))  dict.Add(state, new List<string>());
    dict[state].Add(city);
}

循环浏览您的表格,对于每一行,我都会为城市添加一个新条目,如有必要,还会为州添加一个新条目。

现在我们修改 DGV 的设置以在每个DataGridViewComboBoxCellItems中使用这些Lists

注意:这里的关键是使用DataGridViewComboBoxCells而不是DataGridViewComboBoxColumns

为了便于访问,我再次为州和城市值创建字符串变量。

for (int i = 0; i < dt.Rows.Count; i++)
{
    string state = dt.Rows[i][0].ToString();
    string city = dt.Rows[i][1].ToString();
    dataGridView1.Rows.Add();
    DataGridViewComboBoxCell stateCell = 
                            (DataGridViewComboBoxCell)(dataGridView1.Rows[i].Cells[0]);
    stateCell.Items.AddRange(dict.Keys.ToArray());
    stateCell.Value = state;
    DataGridViewComboBoxCell cityCell = 
                            (DataGridViewComboBoxCell)(dataGridView1.Rows[i].Cells[1]);
    cityCell.Items.AddRange(dict[state].ToArray());
    cityCell.Value = city;
}

注意:这会设置下拉列表中的值,但在"州"列中每次更改后,您需要调整该行中的"城市"列!因此,最好通过将Dictionary移动到类级别来使持久,并创建一个可以在此类更改后调用的小函数。

下面是此功能的示例:

private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
    if (e.ColumnIndex == 0)
        setCities(e.RowIndex, dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString());
}
void setCities(int row, string state)
{
    DataGridViewComboBoxCell cityCell = 
                           (DataGridViewComboBoxCell)(dataGridView1.Rows[row].Cells[1]);
    cityCell.Items.Clear();
    cityCell.Items.AddRange(dict[state].ToArray());
    cityCell.Value = cityCell.Items[0];
}

请注意,新cityCell.Value仅在离开编辑的单元格后显示!

最后说明:如果你真的想每个状态只显示一行,你需要改变填充DGV的循环,不是在你的表上循环,而是在dict.Keys集合上循环:

for (int i = 0; i <  dict.Keys.Count; i++)
{
    string state = dict.Keys.ElementAt(i);
    string city1 = dict[state][0].ToString();
    dataGridView1.Rows.Add();
    DataGridViewComboBoxCell stateCell = 
                            (DataGridViewComboBoxCell)(dataGridView1.Rows[i].Cells[0]);
    stateCell.Items.AddRange(dict.Keys.ToArray());
    stateCell.Value = state;
    DataGridViewComboBoxCell cityCell = 
                            (DataGridViewComboBoxCell)(dataGridView1.Rows[i].Cells[1]);
    cityCell.Items.AddRange(dict[state].ToArray());
    cityCell.Value = city1;
}

相关内容

  • 没有找到相关文章

最新更新