Windows应用程序~~第一个Windows程序 (2)

在这里插入图片描述

Main()方法中的代码是Visual Studio 自动生成的,一般情况我们只会修改第三句代码 Application.Run(new Form1()); 的含义是应用程序启动时运行的窗体。

我们有两个窗体,如何运行时,运行Login窗体呢

在这里插入图片描述


此时运行时只会运行Form1窗体

在这里插入图片描述


此时我们把Main()方法中的 Application.Run()修改为想运行的窗体即可,如Application.Run(new Login())

在这里插入图片描述


此时,我们运行出来的就是Login窗体了

在这里插入图片描述

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgfydf.html