如何实现子窗口关闭父窗口也关闭

it2022-05-09  31

其实是窗口间通讯的问题 实现方法: 在子窗口中声明事件:     public event childclose closefather;     然后在它的关闭事件中触发本事件:      private void Form1_Closed(object sender, System.EventArgs e)      {        //用事件去关闭主窗口        closefather();       } 在父窗口中(登陆窗口中):     在窗口类之前,在共同的命名空间之后声明代理:      public delegate void childclose();        然后弹出子窗体的地方这样写:    Form1 ff=new Form1();     ff.closefather+=new childclose(this.closethis);  //closethis()是父窗体中的一个方法    ff.Show();    定义方法:      public void closethis()     {      this.Close();      } 完!

转载于:https://www.cnblogs.com/tuyile006/archive/2006/07/04/442113.html

相关资源:c# 实现子窗口关闭父窗口也关闭的简单实例

最新回复(0)