How can I have my application minimize itself to the system tray in WindowsXP/Vista?
I\'m also looking for a way to have a message display itself when the mouse is
try
to minimize
this.WindowState = FormWindowState.Minimized;
to minimize to tray see this
What's the proper way to minimize to tray a C# WinForms app?
Bye