What needs to be done to have your .NET application show up in Window's system tray as icon?
And how do you handle mousebutton clicks on said icon?
|
2
|
What needs to be done to have your .NET application show up in Window's system tray as icon? And how do you handle mousebutton clicks on said icon?
|
||
|
|
|
|
First, add a NotifyIcon control to the form. Then wire up the Notify Icon to do what you want. If you want it to hide to tray on minimize, try this.
I'll occasionally use the Balloon Text in order to notify a user - that is done as such
|
||
|
|
|
|
You can add the NotifyIcon component from the toolbox onto your main form. This has events such as MouseDoubleClick that you can use to handle various events. Edit: You have to make sure that you set the Icon property to a valid .ico file if you want it to show up properly in the systray. |
||
|
|
|
|
Nice little tutorial on using the NotifyIcon class here: http://www.developer.com/net/csharp/article.php/3336751 |
||
|
|
|
|
Add NotifyIcon component to your form. And use it's events to handle mouse clicks. |
|||
|
|
|
|
This shows and handles all the mouse click combinations for NotifyIcon More here: http://code.msdn.microsoft.com/TheNotifyIconExample |
|||
|
|