form2中声明全局私有变量
private DataGridViewCellCollection Cells;
重写Form2的构造函数
public Form2(DataGridViewCellCollection Cells)
{
InitializeComponent();
textbox1.Text=Cells[0].ToString();
textbox2.Text=Cells["姓名"].ToString();
......
或者 this. Cells= Cells; 在后面用也可以
}
在窗体Form1中这样写
form2 f=new form2(dataGridView_Custmoer.SelectedRows[0].Cells);
f.showdialog();
这样就搞定了
把这条记录的主键传过去再查询这条记录显示明细。