Hi SO,
Let's say I open a form and want to attach a command to it after it closes.
FormZombie FormZombie = new FormZombie();
FormZombie.Show();
FormZombie.FormClose += delegate{Utilities.DoSomethingCool()};
How can I make Utilities.DoSomethingCool() trigger only executes depending on what happens in FormZombie?