我做了两个窗体form1,form2,分别有两个listview ,在form1点击按钮,显示form2,并把form1中listview中的数据显示到form2中的listview中。
我在form1的按钮中
private void button2_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
f2.Show(this);
this.Close();
}
form2 中
Form1 f1 = (Form1)this.Owner;
foreach (ListViewItem item in ((ListView)f1.Controls["listView1"]).Items)
{
this.listView1.Items.Add(item);
}
listview1中 第一列是重复的数据。20100810002
系统报错:不能在多处添加或插入项“20100810002”。必须首先将其从当前位置移除或将其克隆。
参数名: item
哪位高手能帮我解决下 感谢