Form2 F2 ;
if (F2 == null || F2.IsDisposed)
{
F2 = new Form2();
F2.Show();//如果之前未打开,则打开。
}
else
{
F2.Activate();//之前已打开,则给予焦点,置顶。
}