显示窗体
  private void ShowForm()    ////SHOW窗体
        {
            this.Show();
            this.Visible = true;
            this.WindowState = FormWindowState.Normal;
        }
关闭到托盘
       private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            e.Cancel = true;
            this.Hide();
        } 
我是启动的时候是直接最小化到托盘的,然后第一次可以打开,如果我关闭到托盘以后,第二次我选择恢复,就没有反应了,请问是什么问题呀!!!!!!
在线等待