I have a notifyIcon added to my main form of a project. I have other forms in the project that I want to be able to use the notifyIcon though which is proving difficult. What would be the best way to use 1 notifyIcon between multiple forms? I read a thread about not adding it to a form but instantiating it in its own class which made no sense to me. Thoughts?
|
feedback
|
|
Just expose a property on your main form to return a reference to the NotifyIcon. You can even make it static since there is only ever one:
Code in other classes can now simply use MainForm.Notifier. | |||||
feedback
|
|
Even if you need to assign Let's say, to try to be more clear: 1. 2. That 3. Hope this helps. | |||
feedback
|
|
create a public static variable in the Form where NotifyIcon is implemented
in form load assign forms NotifyIcon
all set. now you can access the notify icon from anywhere in the project
;) | |||
|
feedback
|