当前位置:编程学习 > C#/ASP.NET >>

c#如何设置先运行的窗体?

在c#中有两个窗体form1,form2,
点击运行后总是先运行form1,
如何设置让其先运行form2窗体,在form2窗体登陆后运行form1窗体?
谢谢!! --------------------编程问答-------------------- 在Program.cs里修改Application.Run()的参数就可以了。

Application.Run(new Form2());
--------------------编程问答-------------------- 楼上正解 --------------------编程问答-------------------- Application.Run(new FormName()) --------------------编程问答-------------------- static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
中将Application.Run(new Form1());->Application.Run(new Form2()); --------------------编程问答--------------------
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,