c#在多线程中启动一个新窗体
this.BeginInvoke(new MethodInvoker(() =>
{
Form f1 = new Form();
f1.Show();
}));
c#在多线程中启动一个新窗体
this.BeginInvoke(new MethodInvoker(() =>
{
Form f1 = new Form();
f1.Show();
}));

被折叠的 条评论
为什么被折叠?