J
joe
Hi,
If I have a form and I show it like this:
MyForm f=new MyForm();
f.Show();
when I close the form by clicking the close button
MyForm.Dispose() is called.
When I show the form like this:
f.ShowDialog();
MyForm.Dispose() is not called. Is this a bug or there is
a reason for this behaviour?
Thanks
If I have a form and I show it like this:
MyForm f=new MyForm();
f.Show();
when I close the form by clicking the close button
MyForm.Dispose() is called.
When I show the form like this:
f.ShowDialog();
MyForm.Dispose() is not called. Is this a bug or there is
a reason for this behaviour?
Thanks