日期:2014-05-18 浏览次数:21078 次
Form2 fm = new Form2(); fm.Show(); while (!fm.IsDisposed) { Application.DoEvents();//加上这句 this.Enabled = false;//禁用主窗体 } this.Enabled = true;//激活主窗体 //继续执行 MessageBox.Show("子窗体关闭了,可以继续执行了");