private void menuItem2_Click(object sender, System.EventArgs e)
{
///防止一个窗口,多次打开。
if((fm1==null)||fm1.IsDisposed)
fm1 = new Form1(); fm1.MdiParent = this;
this.statusBar1.Text = fm1.Text;
fm1.Show();
}