0

this code recall a icon from external file:

notifyIcon1.Icon = new Icon("notifier.ico");

if possible change the icon from resources file?

notifyIcon1.Icon = new Icon(Properties.Resources.ResourceManager.icon2);
Federico
  • 3
  • 5

1 Answers1

2

Properties.Resources.icon2 is already an Icon.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964