可能重複:
remove application icon from the taskbar using .net with c#應用程序圖標顯示
我加入窗口申請表圖標使用此代碼
ResourceManager resManager = new ResourceManager("SMSLAgent.Properties.Resources", GetType().Module.Assembly);
notifyicon.Icon = (Icon)resManager.GetObject("SMSLAgent");
notifyicon.Visible = true;
notifyicon.Text = "PA Agent";
this.Hide();
this.ShowInTaskbar = false;
this.SetVisibleCore(false);
到任務欄
此代碼是在加asp.net windows窗體應用程序initilizaion方法。它的工作原理,但問題是,我正在windows7中使用具有管理員權限的Windows服務運行Windows窗體EXE。
在Windows重新啓動不添加圖標顯示爲Windows窗體應用程序,但是當我重新啓動我的Windows服務時,它工作正常。 這裏有什麼問題?