c# 表單最小化到托盤

來源:互聯網
上載者:User

c# winform最小化到托盤,也就是最小化到右下角,其實很簡單,winform中有專門的控制項。

下面是完整的代碼,沒太多需要解釋的。

先在winform中添加notifyIcon控制項,然後啟用相應事件,添加代碼。因為屏蔽了關閉表單事件,可以設定一個全域變數bool變數來分辨是哪裡引起的close事件。

注意添加Form的SizeChanged事件和NotifyIcon控制項的DoubleClick事件

  1.       //全家變數bool closeTag = true;
  2.         //最小化
  3.         private void form1_Resize(object sender, EventArgs e)
  4.          {
  5.             if (this.WindowState == FormWindowState.Minimized)
  6.              {
  7.                  NormalToMinimized();
  8.              }           
  9.          }
  10.         //close時最小化
  11.         private void form1_FormClosing(object sender, FormClosingEventArgs e)
  12.          {
  13.              e.Cancel = true;
  14.              NormalToMinimized();
  15.          }
  16.         //單擊顯示表單
  17.         private void notifyIcon_MouseClick(object sender, MouseEventArgs e)
  18.          {
  19.             if (e.Button == MouseButtons.Left)
  20.              {
  21.                 this.MinimizedToNormal();
  22.              }
  23.          }
  24.         private void MinimizedToNormal()
  25.          {
  26.            this.Visible = true;
  27.            this.WindowState = FormWindowState.Normal;
  28.             notifyIcon.Visible = false;
  29.          }
  30.         private void NormalToMinimized()
  31.          {
  32.             this.WindowState = FormWindowState.Minimized;
  33.             this.Visible = false;
  34.             this.notifyIcon.Visible = true;
  35.          }
  36.         private void frmMain_FormClosing(object sender, FormClosingEventHandler e)
  37.          {
  38.             if (closeTag)
  39.              {
  40.                  e.Cancel = true;
  41.                  NormalToMinimized();
  42.              }
  43.          }
  44. //托盤右鍵關閉事件
  45.         private void 退出XToolStripMenuItem_Click(object sender, EventArgs e)
  46.          {
  47.              closeTag = false;
  48.              Application.Exit();
  49.          }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.