C# Form 点击关闭按钮 如何隐藏

 void FormClosing(object sender, FormClosingEventArgs e)
        {
            this.WindowState = FormWindowState.Minimized;
            e.Cancel = true;                   
        }

但是不要使用Hide,因为Hide会循环调用FormClosing,也不要调用Visible = false; 同要会循环调用FormClosing

posted on 2011-12-15 19:58  norsd  阅读(233)  评论(0编辑  收藏  举报

导航