sooprise
sooprise

Reputation: 23187

Running Code From A Particular Context After A Form Closes?

I want to run some code in this context after the form created here closes.

Form1 Form1 = new Form1();
Form1.Show(); //<-After this closes, I want to run code from this context, using ShowDialog() is not an option

Upvotes: 1

Views: 432

Answers (1)

Brian R. Bondy
Brian R. Bondy

Reputation: 347216

just register for the FormClosing event of the Form

void MyClosingEvent(object o, FormClosingEventArgs args)
{
}

private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
{
    Form1 form1 = new Form1();
    form1.FormClosing += new FormClosingEventHandler(MyClosingEvent);
    //Or if you have C# 2 or higher: 
    //form1.FormClosing += MyClosingEvent;

Upvotes: 1

Related Questions