我有 2 个表单:Form1 和 Form2 Form1 使用 Application.Run() 开始运行
如果用户开始编辑 DataGridView 我在 CellBeginEdit 事件中像这样运行 Form2,则 Form1 有一个 datagridview
Form2 addStock = new Form2(productNo, stockString, this);
addStock.Activate();
addStock.Show();
Form2 完成任务后,当我单击 Form 2 上的按钮时,我希望将值返回到 Form1 并显示在 Form1 上的 DataGridView 中并关闭 Form2
我试图传递 Form1 的对象 Form2 addStock = new Form2(productNo, stockString, this );
但在 Form2 上,我无法使用该对象访问 Form1 的 DataGridview
我该怎么做才能做到这一点?