GTK# StatusIcon Icon not display
问题 I tried to adding icon in Windows Tray using below code in GTK# application.( i am using XAMARIN STUDIO to develop GTK# application) enter code here Statusbar status = new Statusbar (); trayIcon = new StatusIcon(); trayIcon.Pixbuf = new Gdk.Pixbuf ("TrayIcon.ico"); trayIcon.IconName="Tray Icon Name"; trayIcon.Visible = true; trayIcon.PopupMenu += trayIcon_PopupMenu; trayIcon.Tooltip = "Tray Icon Tooltip"; Icon added and contextmenu also added but icon "TrayIcon.ico" not display on windows.