c#如何设置先运行的窗体?
在c#中有两个窗体form1,form2,点击运行后总是先运行form1,
如何设置让其先运行form2窗体,在form2窗体登陆后运行form1窗体?
谢谢!! --------------------编程问答-------------------- 在Program.cs里修改Application.Run()的参数就可以了。
--------------------编程问答-------------------- 楼上正解 --------------------编程问答-------------------- Application.Run(new FormName()) --------------------编程问答-------------------- static void Main()
Application.Run(new Form2());
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
中将Application.Run(new Form1());->Application.Run(new Form2()); --------------------编程问答--------------------
补充:.NET技术 , C#