我正在尝试将选定的行从 datagridview1 (form1) 传递到 datagridview1(form 4),这是我的代码列表..但我收到错误。由于我的编程技能不是很好,如果您能澄清问题,请详细解释...谢谢。
if (tableListBox.SelectedIndex == 2)
{
List<string> sendingList = new List<string>();
foreach (DataGridViewRow dr in dataGridView1.SelectedRows)
{
int counter = 0;
sendingList.Add(dr.DataBoundItem);// The best overload method match for 'System.Collections.Generic.List<string>.Add(string)' has some invalid argument
}
Form4 form4 = new Form4(sendingList);
form4.Show();
}