在C#隱藏主視窗的幾種方法

來源:互聯網
上載者:User

寫過一個程式,要求在程式啟動的時候主視窗隱藏,只在系統托盤裡顯示一個表徵圖。一直以來採用的方法都是設定視窗的ShowInTaskBar=false, WindowState=Minimized。但是偶然發現儘管這樣的方法可以使主視窗隱藏不見,但是在用Alt+Tab的時候卻可以看見這個程式的表徵圖並把這個視窗顯示出來。因此這種方法其實並不能滿足要求。

經過研究,又找到兩個方法。

方法一: 重寫setVisibleCore方法

protected override void SetVisibleCore(bool value)
{
     base.SetVisibleCore(false);
}

這個方法比較簡單,但是使用了這個方法後主視窗就再也不能被顯示出來,而且在退出程式的時候也必須調用Application.Exit方法而不是Close方法。這樣的話就要考慮一下,要把主視窗的很多功能放到其他的地方去。

方法二: 不建立主視窗,直接建立NotifyIcon和ContextMenu組件
這種方法比較麻煩,很多代碼都必須手工寫

static void Main()
 {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            System.Resources.ResourceManager resources =
                new System.Resources.ResourceManager("myResource",  System.Reflection.Assembly.GetExecutingAssembly());
            NotifyIcon ni = new NotifyIcon();

            ni.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Warning;
            ni.BalloonTipText = "test!";
            ni.BalloonTipTitle = "test.";
            //ni.ContextMenuStrip = contextMenu;
            ni.Icon = ((System.Drawing.Icon)(resources.GetObject("ni.Icon")));
            ni.Text = "Test";
            ni.Visible = true;
            ni.MouseClick += delegate(object sender, MouseEventArgs e)
            {
                ni.ShowBalloonTip(0);
            };

            Application.Run();
}
 如果需要的組件太多,這個方法就很繁瑣,因此只是做為一種可行性研究。

方法三:前面兩種方法都有一個問題,主視窗不能再顯示出來。現在這種方法就沒有這個問題了

private bool windowCreate=true;
...
protected override void OnActivated(EventArgs e)
        {
            if (windowCreate)
            {
                base.Visible = false;
                windowCreate = false;
            }

            base.OnActivated(e);
        }

private void notifyIcon1_DoubleClick(object sender, EventArgs e)
        {
            if (this.Visible == true)
            {
                this.Hide();
                this.ShowInTaskbar = false;
            }
            else
            {
                this.Visible = true;
                this.ShowInTaskbar = true;
                this.WindowState = FormWindowState.Normal;
                //this.Show();
                this.BringToFront();
            }

        }

 



相關文章

聯繫我們

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