private static Form1 f1; private Form1 getf1() ... {if (f1 == null || f1.IsDisposed)...{f1 = new Form1();f1.MdiParent=this;}return f1;} private void toolStripButton1_Click( object sender, EventArgs e) ... {Form1 f1 = getf1();f1.Show();f1.Focus();}