c#中一个项目如何创建多个窗体,在form1中点控件从打开form2
new form2之后 调用form2实体的Show()即可
form2 frm2=new form2();frm2.ShowDialog();
可以在From2构造函数中写入参数From Fromform2 frm2=new form2(this);
frm2.ShowDialog();
//隐藏当前窗体
this.Visible=false;