我是 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();
}
}