假设在项目中有两个窗体Form1和Form2。启动后首先显示Form1。在Form1上有命令按钮button1,点击button1,显示Form2,同时关闭Form1。代码如下:
private void button1_Click(object sender, EventArgs e){ // 显示Form2 Form2 f2 = new Form2(); f2.Show(); // 关闭窗体1 this.Close();}