代码如下:
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//xxxx操作
if (true)
{
Application.Run(new Form1());
}
//xxxx操作
}
}
现在有个问题就是 Application.Run(new Form1()); 会阻塞进程,后面的代码运行不了。也试过用多线程,这样会报错,急死了,求大神帮忙