Hi,
i have added an icon to a WPF app in the project properties.
How do I refer to that icon so I can add it to a NotifyIcon that I am creating for system tray.
In code that is??
System.Windows.Forms.NotifyIcon ni = new System.Windows.Forms.NotifyIcon();
ni.Icon = new System.Drawing.Icon("MyIcon.ico");
Does not work. Malcolm