foreach (Form aForm in this.MdiChildren)
{
if (aForm.Name == "Form1")
{
aForm.Close();
break;
}
}