多个窗体设置首启动、跳转及完全退出整个程序

首启动:

进入“解决方案资源管理器”找到Program.cs中的Main方法Application.Run(new Form*());

把 Form*换成首启动的窗体的Name,就OK了。

跳转:

Form1 s=new Form1();
s.Show();
this.Hide();  //隐藏

完全退出:

Application.ExitThread();

原文地址:https://www.cnblogs.com/oooo0/p/3132141.html