111,125
社区成员
发帖
与我相关
我的任务
分享 private void notifyIcon1_DoubleClick(object sender, EventArgs e)
{
this.Visible = true;
this.WindowState = FormWindowState.Normal;
this.TopMost = true;
notifyIcon1.Visible = true;
}
private void notifyIcon1_Click(object sender, EventArgs e)
{
this.Visible = false; notifyIcon1.Visible = true; this.TopMost = false;
}