C# WinForm 有两个窗体Form1和Form2,选中Form1的Datagridview的某一行后,将选中行

2024年11月28日 06:45
有2个网友回答
网友(1):

 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();
这样就搞定了

网友(2):

把这条记录的主键传过去再查询这条记录显示明细。