vote up 6 vote down star
9

What is the proper way to minimize a WinForms app to the system tray?

I've seen hackish solutions like, "minimize, set ShowInTaskbar = false, then show your NotifyIcon."

Solutions like that are hackish because the app doesn't appear to minimize to the tray like other apps, the code has to detect when to set ShowInTaskbar = true, among other issues.

What's the proper way to do this?

flag

Could you provide the name of a sample application that does what you are looking for. I really don't think there is a "proper" way to do this since your really shouldn't be minimizing applications to the notification area anyway. – Navaar Jun 13 at 19:52
Perhaps you and I are using different terminology. I'm speaking of the area in the system tray where apps like WinRar, Vuze, Witty, Folding @ Home, etc. minimize and/or show information. – Judah Himango Jun 14 at 4:09

7 Answers

vote up 7 vote down check

There is actually no unmanaged way to do that form of animation to the tray in native winforms, however you can P/Invoke shell32.dll to do it:

Some good info here (In the comments not the post):

http://blogs.msdn.com/jfoscoding/archive/2005/10/20/483300.aspx

And here it is in C++:

http://www.codeproject.com/KB/shell/minimizetotray.aspx

You can use that to figure out what stuff to Pinvoke for your C# version.

link|flag
vote up 0 vote down

Someone with a solution? I'll appreciate that too.

link|flag
1  
The answer marked in green links to a proper solution. – Judah Himango Jun 14 at 4:11
vote up 0 vote down

Similar as above...

I have a resize event handler that is triggered whenever the window gets resized (Maximized, minimized, etc.)...

    public form1()
    {
       Initialize Component();

       this.Resize += new EventHanlder(form1_Resize);
    } 


    private void form1_Resize(object sender, EventArgs e)
    {
       if (this.WindowState == FormWindowState.Minimized && minimizeToTrayToolStripMenuItem.Checked == true)
       {
             NotificationIcon1.Visible = true;
             NotificationIcon1.BalloonTipText = "Tool Tip Text"
             NotificationIcon1.ShowBalloonTip(2);  //show balloon tip for 2 seconds
             NotificationIcon1.Text = "Balloon Text that shows when minimized to tray for 2 seconds";
             this.WindowState = FormWindowState.Minimized;
             this.ShowInTaskbar = false;
       }
    }

This allows the user to select whether or not they want to minimize to tray via a menubar. They can go to Windows -> and click on Minimize to Tray. If this is checked, and the window is being resized to Minimized, then it will minimize to the tray. Works flawlessly for me.

link|flag
Kevin, I think you misunderstood my question. I am asking for the proper way to minimize. By "proper", I mean having Windows play the minimize to tray animation for your window as it's minimized. Your solution plays the standard "minimize to task bar", and then the taskbar tile disappears. – Judah Himango Feb 11 at 15:24
vote up 0 vote down

In the constructor of the Form:

this.Resize += new EventHandler(MainForm_Minimize);

Then use this Event Handler method:

    private void MainForm_Minimize(object sender, EventArgs e)
    {
        if(this.WindowState == FormWindowState.Minimized)
            Hide();
    }
link|flag
Structured, that's not what I'm looking for. I trying to get the app to minimize to try, using the XP/Vista animation that shows it going to the tray. – Judah Himango Feb 8 at 22:40
vote up 2 vote down

This code is tested and supports many options.

More here: http://code.msdn.microsoft.com/TheNotifyIconExample

link|flag
vote up 2 vote down

Update: Looks like I posted too soon. I was also using the below hack for a tool of mine. Waiting for the right solution for this..........

You can use Windows.Forms.NotifyIcon for this. http://msdn.microsoft.com/en-us/library/system.windows.forms.notifyicon.aspx

Add NotifyIcon to the form, set some properties and you are done.

        this.ShowIcon = false;//for the main form
        this.ShowInTaskbar = false;//for the main form
        this.notifyIcon1.Visible = true;//for notify icon
        this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));//set an icon for notifyicon

    private void Form1_Shown(object sender, EventArgs e)
    {
        this.Hide();
    }
link|flag
Gulzar, your code is exactly the hackish scenario I described in the post. Is there a better way? I'm looking for a real minimize to tray, not this "show notify icon & don't ShowInTaskbar" hack. – Judah Himango Jun 5 at 15:03
vote up 2 vote down
this.WindowState = FormWindowState.Minimized

That is the built in way to do it and it looks fine to me most of the time. The only time is has some weirdness to it is if you call it on startup which has some weirdness sometimes which is why most people will also set the ShowInTaskbar = false and hide the form too.

http://msdn.microsoft.com/en-us/library/system.windows.forms.form.windowstate.aspx

link|flag
Ryan, that minimizes it to the taskbar, not the system tray. If you additionally call ShowInTaskbar = false, you get into the hackish scenario described in the post. I want it to actually minimize to the system tray. E.g. if I minimize, I want Windows to show that it is minimizing to the system tray, not to the task bar or start menu. Most apps that minimize to the tray do this just fine; Windows draws the window minimizing to the system tray. How are they doing it? – Judah Himango Jun 5 at 15:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.