using System.Threading;

Thread th=new Thread(delegate(){new YourForm().ShowDialog();});
th.Start();

 

相关文章: