先获取选中的项,把获取的项传至第二个窗体,然后按index获取值
ListViewItem listitem = this.listView1.SelectedItems[0]; //获取选中的项
Form1 form1=new Form1(ListViewItem listitem);//窗体传值
form1.show();
string id = listitem.SubItems[1].Text; //id 索引从1开始
string name = listitem.SubItems[2].Text; //name
string type = listitem.SubItems[3].Text; //type