Binding the child form is the correct way but need to do one more step. // Create an instance of the child form var childForm = new ChildForm();`
// Bind the FormClosed event to a handler in the main form
childForm.FormClosed += ChildForm_FormClosed;`