This is .net WinForm question about MDI setting.
When the main form creates an MDI child form, the main form's PropertyStore
holds a reference to the MDI child form. I wonder whether this will cause the child form to be alive even if it is closed. If so, what shall I do when disposing the child form in order to remove this reference?
The child form is called by sample code:
//The code is in the main form.
var f = new FormMDIChild();
f.MdiParent = this;
f.Show();