C#中如何改变窗体的运行顺序

2024-12-13 21:25:26
推荐回答(1个)
回答1:

Application.Run(new Form1());

把Form1改成想要先运行的窗体
Application.Run(new Form2());

再在程序中修改其它的顺序