似乎它是如此简单,但由于某种原因,它持续了 4 个小时没有结果。我有两列和几行已经填充的简单 Gridview,现在我想将 ComboBoxCell 添加到下一行。
我会展示我的逻辑,也许你会告诉我我的错误:
SampleGridView.Rows.Add("test1", "test1");
SampleGridView.Rows.Add("test2", "test2");
SampleGridView.Rows.Add("test3", "test3");
现在我正在插入我的 ComboBox 三行工作正常:
DataGridViewRow RowSample = new DataGridViewRow();
DataGridViewComboBoxCell CellSample = new DataGridViewComboBoxCell();
CellSample.DataSource = StringList; // list of the items that I want to insert in ComboBox
RowSample.Cells.Add(CellSample);
SampleGridView.Rows.Add(RowSample);
有任何想法吗?谢谢