2009-01-08 45 views
1

我已經在項目屬性中將圖標添加到WPF應用程序。WPF - 請參閱代碼中的應用程序圖標

我該如何參考該圖標,以便將它添加到我爲系統托盤創建的 NotifyIcon中。

在代碼中是??

System.Windows.Forms.NotifyIcon ni = new System.Windows.Forms.NotifyIcon(); 
    ni.Icon = new System.Drawing.Icon("MyIcon.ico"); 

不起作用。 馬爾科姆

回答

6
System.Windows.Forms.NotifyIcon ni = new System.Windows.Forms.NotifyIcon(); 
ni.Icon = System.Drawing.Icon.ExtractAssociatedIcon(
      System.Reflection.Assembly.GetEntryAssembly().ManifestModule.Name); 
ni.Visible = true; 
相關問題