views:

81

answers:

2

My dream is to make a very good, open source Help desk application for companies to use for free.

My client application will run on every client computer have minimize itself to the task bar. When the user click the icon, it'll open the actual Winform window.

I'm using .NET 3.5; is there a simple way to minimize/maximize from the taskbar?

+2  A: 

Have a look at

astander
Great help! Thanks a bunch!
Serg
+2  A: 

I'm assuming that you mean the system tray. (The small icons next to the clock)

Set the form's ShowInTaskbar property to False, then make a NotifyIcon component and show the form in its Click event.

SLaks
And what if you still want it displayed in the Task Bar, and only hidden on minimize?
astander
Then set `ShowInTaskbar` to false when it's minimized by checking `FormWindowState` in the `Resize` event.
SLaks