0

我是 c# 新手,但知道 c++ 和 c,我的问题是我的表单在最小化到系统托盘后无法再次显示。

那是我用来隐藏它的代码:

    protected override void OnResize(EventArgs e)
    {
        base.OnResize(e);

        bool cursorNotInBar = Screen.GetWorkingArea(this).Contains(Cursor.Position);

        if (this.WindowState == FormWindowState.Minimized && cursorNotInBar)
        {
            this.ShowInTaskbar = false;
            notifyIcon.Visible = true;
            this.Hide();
        }
    }
4

3 回答 3

2

您需要撤消对表单所做的更改以使其隐藏...使其再次显示:

    private void notifyIcon_MouseClick(object sender, MouseEventArgs e)
    {
        if (e.Button == System.Windows.Forms.MouseButtons.Left)
        {
            this.Show();
            this.ShowInTaskbar = true;
            this.WindowState = FormWindowState.Normal;
            notifyIcon.Visible = false;
        }
    }
于 2013-06-23T16:46:11.443 回答
0

在 notifyIcon 单击事件上尝试:

this.Show();

(我不确定,但这个也可以工作:this.Visible = true)

顺便说一句,尝试在您的表单上处理 OnClosing 事件而不是 OnResize

(我家里有合适的代码,当我到那里时会分享它)

于 2013-06-23T13:14:00.130 回答
0

您可以在最小化后使用this.Show()再次显示表单。如果这不起作用,请告诉我,将提供另一种解决方案。

于 2013-06-23T13:53:57.197 回答