What do I need to do to make a WinForms application run in the System Tray?
Not an application that can minimize to the tray, but one that exists only in the tray, with nothing more than an icon, tool tip, and "right click" menu.
|
What do I need to do to make a WinForms application run in the System Tray? Not an application that can minimize to the tray, but one that exists only in the tray, with nothing more than an icon, tool tip, and "right click" menu. |
|||||
|
|
The basic answer of using a NotifyIcon is correct but, like many things .NET, there are a host of subtleties involved in doing it right. The tutorial mentioned by Brad gives a good walk-through of the very basics, but does not address any of these:
I just had an article published on Simple-Talk.com that addresses these points and more in great detail, providing a tray application framework that you can put to use immediately, plus a complete, real-world example application to show everything in practice. See Creating Tray Applications in .NET: A Practical Guide, published November, 2010. |
|||
|
|
|
I've wrote a traybar app with .NET 1.1 and I didn't need a form. |
||||
|
|
|
As mat1t says - you need to add a NotifyIcon to your application and then use something like the following code to set the tooltip and context menu:
This code shows the icon in the system tray only:
The following will be needed if you have a form (for whatever reason):
The right click to get the context menu is handled automatically, but if you want to do some action on a left click you'll need to add a Click handler:
|
||||
|
As far as I'm aware you have to still write the application using a form, but have no controls on the form and never set it visible. Use the NotifyIcon (an MSDN sample of which can be found here) to write your application. |
|||||||||||
|
|
"System tray" application is just a regular win forms application, only difference is that it creates a icon in windows system tray area. In order to create sys.tray icon use NotifyIcon component , you can find it in Toolbox(Common controls), and modify it's properties: Icon, tool tip. Also it enables you to handle mouse click and double click messages. And One more thing , in order to achieve look and feels or standard tray app. add followinf lines on your main form show event:
|
|||
|
|
|
The answers given here are great, but I wanted to share a resource. There is a tutorial for exactly this over on Experts Exchange. |
|||
|
|
|
|||||||
|
|
The code project article Creating a Tasktray Application gives a very simple explanation and example of creating an application that only ever exists in the System Tray. Basically change the
|
||||
|
|
|
Here is how I did it with VS 2010, .Net 4
|
||||
|
|