如果是main窗口的话 建议隐藏,因为main窗口关闭会关闭整个程序,一般都用this.hide()来隐藏掉,关闭的话,楼上讲的很清楚了,先在Form01中实现Form02.Show();然后this.close();
直接调用本来窗口的关闭方法。
在调用另一窗口的语句下面写 this.Close();
先在Form01中实现Form02.Show();然后this.close();
二楼的也写得很清楚了。。
Form2 f2=new Form2();
f2.Show();
this.close();