Saif Khan
Saif Khan

Reputation: 18812

Winform form closed event

I have 2 forms, Main and Child. When a button is clicked on the Main form, the Child form is loaded. Can I catch from the Main form, when the Child form is closed by subscribing to the closed event of the child form?

Upvotes: 6

Views: 12109

Answers (1)

Fredrik Mörk
Fredrik Mörk

Reputation: 158409

Yes you can, it's pretty straightforward:

private void LoadChildForm_Click(object sender, EventArgs e)
{
    ChildForm form = new ChildForm();
    form.FormClosed += new FormClosedEventHandler(ChildFormClosed);
    form.Show();
}

void ChildFormClosed(object sender, FormClosedEventArgs e)
{
    // do something useful
}

Upvotes: 15

Related Questions