我的表单中有两个列表框元素。listbox1 中的项目代表我的 DataGridView 中的列,我的 listbox2 中的项目代表我的 DataGridView 中的行。
foreach (var el in listBox1Elements)
{
// code...
dataGridView1.Columns.Add(col);
}
由于可以添加或删除 listbox1 中的项目,因此我当前的解决方案存在问题。
dataGridView1.Rows.Add("test","some","data","even","more","data");
我想知道是否有使用列表的解决方案。然后我的代码可能看起来像这样:
foreach (var el in listBox2Elements)
{
myList.add("some text");
}
dataGridView1.Rows.Add(myList);