(1) 在一个项目中,添加两个窗体。
(2) 在解决方案中,有一个Program.cs文件,双击此文件,此时该文件的代码如下所示:
static class Program
{
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
(3) 要实现先启动Form2,只需在Program.cs文件中修改此行“Application.Run(new Form1());”代码为“Application.Run(new Form2());”,即可。
(4) 运行程序,先启动的窗体为Form2。
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>