在內(nèi)容過程中宠蚂,將內(nèi)容過程中比較重要的一些內(nèi)容段備份一次炉抒,下邊資料是關(guān)于C#最小化應(yīng)用程序到系統(tǒng)托盤的的內(nèi)容盏混,應(yīng)該是對小伙伴們有一些幫助音榜。
? ? ? ? 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;
? ? ? ? }