好的,我有 2 个表格。form8 包含数据网格视图。第二个(form10)表单包含一个文本框和一个图片框。这是我试图用来传递数据的代码,但它不起作用。
Form8 frm8;
public Form10(Form8 frm8): this()
{
this.frm8 = frm8;
}
private void buttonX1_Click(object sender, EventArgs e)
{
try
{
int n = frm8.dataGridView1.Rows.Add();
frm8.dataGridView1.Rows[n].Cells[0].Value = textBox1.Text;
frm8.dataGridView1.Rows[n].Cells[1].Value = comboBox1.Text + "|" + textBox3.Text;
frm8.dataGridView1.Rows[n].Cells[2].Value = pictureBox1.Image;
this.Close();
}
catch { }
}