C # Implementing cases of Closing child windows and closing parent windows

Source: Internet
Author: User
The following small series for everyone to bring a C # implementation child window close the parent window is also closed a simple instance. Small series feel very good, now share to everyone, also for everyone to make a reference. Let's take a look at it with a little knitting.

is actually the problem of inter-window communication, open Form2 on Form1, Form2 close Form1

Implementation method:

To declare an event in the child window Form2:

public delegate void Childclose ();  public event Childclose Closefather;  This event is then triggered in its Shutdown event:   private void Form2_closed (object sender, System.EventArgs e)   {    //use event to close the main window    Closefather ();   }

In the parent window Form1 (such as in the login window):

Then pop up the sub-Form2 form where this is written:

  Form2 ff=new Form2 ();  Ff.closefather+=new Childclose (this.closethis); Closethis () is a method ff in the parent form  . Show ();   public void Closethis ()   {this     . Close ();   }
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.