在内容过程中,将内容过程中比较重要的一些内容段备份一次,下边资料是关于C#最小化应用程序到系统托盘的的内容,应该是对小伙伴们有一些帮助。
private void Form1_SizeChanged(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
this.Visible = false;
this.notifyIcon1.Visible = true;
}
}
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Visible = true;
this.notifyIcon1.Visible = false;
this.WindowState = FormWindowState.Normal;

}




 

posted on 2021-11-01 15:57  odsxe  阅读(29)  评论(0编辑  收藏  举报