I'm attempting to detect, on the MDI parent, when my MDI child form closes, and react accordingly. The MDI parent shouldn't do anything until the MDI child closes. Here is my code, I'm unsure as to what I'm doing wrong, but the form closed event method I added is never being called...
The following code is in the MDI parent class, if that wasn't obvious.
private void keyValidation()
{
if (Properties.Settings.Default.Unlock == true)
return;
else
{
menu.Enabled = false;
statusStrip.Enabled = false;
ValidationForm vf = new ValidationForm();
vf.MdiParent = this;
vf.Show();
vf.FormClosed += new FormClosedEventHandler(validationForm_FormClosed);
}
}
void validationForm_FormClosed(object sender, FormClosedEventArgs e)
{
MessageBox.Show("Got here");
if (Properties.Settings.Default.Unlock == true)
{
menu.Enabled = true;
statusStrip.Enabled = true;
}
}
Thanks for any help!
Form Closingevent is called beforeClosed. You could use theClosingevent to see if the user needs to save a document for example. – Neil Knight Dec 6 '10 at 15:52FormClosingalso allows you to cancel the close by setting theFormClosingEventArgsCancelproperty totrue. – Powerlord Dec 6 '10 at 16:20