轻松实现C# Form切换

1.首先需要定义新的窗体:

 

        private Form anotherForm;                             //声明新窗体

 

2.在需要跳转的动作下面写上跳转事件:

 

        private void Button1_Click(object sender, EventArgs e)//实现隐藏旧窗体,跳转新窗体
        {
            anotherForm = new Form2();                        //定义新窗体
            this.Hide();                                      //隐藏旧窗体
            anotherForm.ShowDialog();                         //展示新窗体
            Application.ExitThread();                         //退出当前线程上的消息循环,并关闭该线程上的所有窗口。
        }


3。至此就实现了点击Button1切换到不同界面!

 

 

 

 

 

你可能感兴趣的:(C#)