How can I hide my VC# applications task bar button and show a system tray icon instead. Then, when I have the icon, how to display notifications like FDM or Windows Update etc, and add right click menu to the icon.
|
|
|
|
|
|
|
|
||
|
|
|
|
The NotifyIcon class creates an icon in the system tray. As that page indicates, you can create a ContextMenu, which will appear when the user right clicks. NotifyIcon includes "BalloonTip" properties that can be used to display the messages you're referring to. This example is from the MSDN documentation.
As @Kobi says, you also want to set your form's ShowInTaskbar property to false. |
||
|
|
