C#實現托盤應用程式

來源:互聯網
上載者:User

下面是我根據網路上的應用程式改編的一個簡單的托盤程式的DEMO,實現了一般托盤程式的準系統

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication4
{
    public partial class Form1 : Form
    {

        private Icon mNetIcon = new Icon("appMain.ico");

        private NotifyIcon TrayIcon;

        private ContextMenu notifyiconMnu;

        public Form1()
        {
            InitializeComponent();
            Initializenotifyicon();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.WindowState = System.Windows.Forms.FormWindowState.Minimized;

        }

        private void Initializenotifyicon()
        {
            //設定托盤程式的各個屬性
            TrayIcon = new NotifyIcon();
            TrayIcon.Icon = mNetIcon;
            TrayIcon.Text = "用Visual C#做托盤程式";
            TrayIcon.Visible = true;
            TrayIcon.Click += new System.EventHandler(this.click);

            ////定義一個MenuItem數組,並把此數組同時賦值給ContextMenu對象
            MenuItem[] mnuItms = new MenuItem[1];
            mnuItms[0] = new MenuItem();
            mnuItms[0].Text = "退出系統";
            mnuItms[0].Click += new System.EventHandler(this.showmessage);

            notifyiconMnu = new ContextMenu(mnuItms);
            TrayIcon.ContextMenu = notifyiconMnu;
            ////為托盤程式加入設定好的ContextMenu對象
        }

        private void Form1_FormClosed(object sender, FormClosedEventArgs e)
        {
            TrayIcon.Visible = false;
        }
        public void click(object sender, System.EventArgs e)
        {
            MessageBox.Show("Visual C#編寫托盤程式中的事件響應");
        }

        public void showmessage(object sender, System.EventArgs e)
        {
            MessageBox.Show("你選擇了退出系統!");
            this.Close();
        }

    }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.