C#关闭当前窗口打开新窗口

using System.Threading;

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

 

posted @ 2010-11-26 17:52  Code技术人生  阅读(2773)  评论(4编辑  收藏  举报