C#最小化应用程序到系统托盘的源码
作者:互联网
在内容过程中,将内容过程中比较重要的一些内容段备份一次,下边资料是关于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;
}
标签:false,C#,系统托盘,private,WindowState,Visible,源码,FormWindowState,notifyIcon1 来源: https://blog.csdn.net/weixin_44099735/article/details/121081937