Minimizing a window to the System Tray on a Close event

A question that .Net programmers does frequently ask is the following : how to minimize a window in the systray when the user clicks the "Close" button ? This post exposes solutions to the various problems this quite simple need implies.

The first step is to prevent the window to close. This can be done either by handling the Closing event or by overriding the OnClosing protected virtual method. For performance and memory consumption reasons, I'd prefer not to use event handlers whenever possible. The code is quite simple since whe only need to cancel the operation, and looks like the following...

Code Copy
/// <summary>
///
Occurs when the window is requested to be closed.
/// </summary>
///
<param name="e">The event arguments</param>
protected override void OnClosing(CancelEventArgs e)
{
// The window must only be minimized in tray
e.Cancel = true;
MinimizeInTray();

base.OnClosing(e);
}

... and the MinimizeInTray method must do the following:

  • Minimize the window,
  • Hide the window item in the taskbar.
Code Copy
private void MinimizeInTray()
{
this.ShowInTaskbar = false;
this.WindowState = FormWindowState.Minimized;
}

Now, supposing that you have a context menu attached to the NotifyIcon object that represents the systray icon for your application, you can add the following menu items:

  • An openMenu menu item that restores the window,
Code Copy
private void openMenu_Click(object sender, System.EventArgs e)
{
ShowFromTray();
}

private void ShowFromTray()
{
this.WindowState = FormWindowState.Normal;
this.ShowInTaskbar = true;
}
  • And an exitMenu item that closes the application.
Code Copy
private void exitMenu_Click(object sender, System.EventArgs e)
{
Application.Exit();
}

Note that calling Close() fails because our OnClosing method prevents the window to close...

Now, we should think that our job is completed. But (yes, there's always a but in programming), what happens if the computer is being shutdown ? The answer is quite simple : our OnClosing implementation prevents the window to be closed, which prevents the computer to be shutdown...

To solve this issue, we need some lightweight Interop :

  • First, override the WndProc virtual method to handle the WM_QUERYENDSESSION message:
Code Copy
private const int WM_QUERYENDSESSION = 0x11;
private bool endSessionPending;

protected
override void WndProc(ref Message m)
{
if (m.Msg == WM_QUERYENDSESSION)
endSessionPending = true;
base.WndProc(ref m);
}
  • Then, modify the OnClosing method to handle the event in a different way :
Code Copy HideScrollFull
/// <summary>
///
Occurs when the window is requested to be closed.
/// </summary>
///
<param name="e">The event arguments</param>
protected override void OnClosing(CancelEventArgs e)
{
if (endSessionPending)
{
// The session is ending.
e.Cancel = false;
}
else
{
// The window must only be minimized in tray
e.Cancel = true;
MinimizeInTray();
}

base.OnClosing(e);
}
. . .

And that's all!

The full C# sample code is available below. There's only missing icon resources, but you will correct them by yourself!

Code Copy HideScrollFull
#region References

using System;
using System.ComponentModel;
using System.Windows.Forms;
using System.Security.Permissions;

#endregion

namespace
MinimizeOnClose
{
/// <summary>
/// Represents the main window of the application.
/// </summary>
public class MinimizeOnClose : System.Windows.Forms.Form
{
#region Interop Constants

private const int WM_QUERYENDSESSION = 0x11;

#endregion

#region
Fields

private System.Windows.Forms.NotifyIcon notifyIcon;
private System.Windows.Forms.ContextMenu notifyIconMenu;
private System.Windows.Forms.MenuItem openMenu;
private System.Windows.Forms.MenuItem hideMenu;
private System.Windows.Forms.MenuItem exitMenu;
private System.ComponentModel.IContainer components;
private System.Windows.Forms.MenuItem blankMenu;

private bool endSessionPending;

#endregion

#region
Instance Management

public MinimizeOnClose()
{
InitializeComponent();
}

#endregion

#region
Protected Overrides

/// <summary>
/// Cleans all the resources.
/// </summary>
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (components != null)
components.Dispose();
}
base.Dispose(disposing);
}

/// <summary>
/// Occurs when the window is requested to be closed.
/// </summary>
/// <param name="e">The event arguments</param>
protected override void OnClosing(CancelEventArgs e)
{
if (endSessionPending)
{
// The session is ending
e.Cancel = false;
}
else
{
// The window must only be minimized in tray
e.Cancel = true;
MinimizeInTray();
}

base.OnClosing(e);
}
[SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)]
protected override void WndProc(ref Message m)
{
if (m.Msg == WM_QUERYENDSESSION)
endSessionPending = true;
base.WndProc(ref m);
}
#endregion
#region Private Members

#region Event Handlers

private void openMenu_Click(object sender, System.EventArgs e)
{
ShowFromTray();
}

private void hideMenu_Click(object sender, System.EventArgs e)
{
MinimizeInTray();
}

private void exitMenu_Click(object sender, System.EventArgs e)
{
Application.Exit();
}

#endregion

#region
Private Methods

private void MinimizeInTray()
{
this.ShowInTaskbar = false;
this.WindowState = FormWindowState.Minimized;

openMenu.Visible = true;
hideMenu.Visible = false;
}

private void ShowFromTray()
{
this.WindowState = FormWindowState.Normal;
this.ShowInTaskbar = true;

openMenu.Visible = true;
hideMenu.Visible = false;
}

#endregion

#region
Windows Form Designer generated code

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MinimizeOnClose));
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.notifyIconMenu = new System.Windows.Forms.ContextMenu();
this.openMenu = new System.Windows.Forms.MenuItem();
this.hideMenu = new System.Windows.Forms.MenuItem();
this.blankMenu = new System.Windows.Forms.MenuItem();
this.exitMenu = new System.Windows.Forms.MenuItem();
//
// notifyIcon
//
this.notifyIcon.ContextMenu = this.notifyIconMenu;
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
this.notifyIcon.Text = "MinimizeOnClose";
this.notifyIcon.Visible = true;
//
// notifyIconMenu
//
this.notifyIconMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.openMenu,
this.hideMenu,
this.blankMenu,
this.exitMenu});
//
// openMenu
//
this.openMenu.Index = 0;
this.openMenu.Text = "&Open";
this.openMenu.Visible = false;
this.openMenu.Click += new System.EventHandler(this.openMenu_Click);
//
// hideMenu
//
this.hideMenu.Index = 1;
this.hideMenu.Text = "&Hide";
this.hideMenu.Click += new System.EventHandler(this.hideMenu_Click);
//
// blankMenu
//
this.blankMenu.Index = 2;
this.blankMenu.Text = "-";
//
// exitMenu
//
this.exitMenu.Index = 3;
this.exitMenu.Text = "E&xit";
this.exitMenu.Click += new System.EventHandler(this.exitMenu_Click);
//
// MinimizeOnClose
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(240, 78);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MinimizeOnClose";
this.Text = "MinimizeOnClose";
}
#endregion

/// <summary>
/// The application entry point.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new MinimizeOnClose());
}

#endregion
}
}
. . .

Have a nice week-end, and do not overindulge in Easter eggs too much!

posted on Saturday, March 26, 2005 12:02 PM

Feedback

# re: Minimizing a window to the System Tray on a Close event 4/15/2005 6:51 PM Raghu

Hello,

THis works well. Thanks for the snippet...

I have one question regarding this though...

HOw can I show a bubble message that 'MyApp is still running in the background!' as soon as the application gets minimized to the tray??

Thanks.

Raghu.

# re: Minimizing a window to the System Tray on a Close event 4/18/2005 7:42 PM Skup

Showing a balloon tip on a notify icon can be done using the Shell API function Shell_NotifyIcon with flags NIF_INFO | NIF_ICON | NIF_MESSAGE.

The problem is that you need the notify icon message window handle and the notify icon id to call the function, and the WinForm Notify Icon class does not give access to it. So you have to rewrite all that code.

I'll give a implementation of that soon since it is the only way to make ownerdrawn menu work correctly on a notify icon.

If you cannot wait, have a look at MS implementation using Reflector (there's a link on the left)!

# re: Minimizing a window to the System Tray on a Close event 1/14/2008 2:39 PM prem

hi
thanks for this document.

i want my tray application get started as the system starts. but not as a windows service. how can i do that?
thanks in advance

# re: Minimizing a window to the System Tray on a Close event 7/20/2008 8:46 AM Aron

It is the year 2019, 30 years after the first AKIRA project led to the destruction of Tokyo and the start of World War III. The original AKIRA project was a secret experiment to develop a new form of human evolution through the manipulation of the abilities and powers of psychically gifted children. The military hoped to use the children as living weapons, while the scientists had hoped to develop a new genetically superior human being.

But both the military and anime scientists involved in the project learned too late that the power they were seeking could not be controlled. Akira, one of the children involved in the experiment, developed into a force so great, the he literally destroyed everything about him through a terrifying burst of psychic energy, setting off a nuclear-like explosion which led to the world war.
http://sig-ment.com/index.php?id=114
http://mistoru.com/index.php?id=66
http://vistorg.com/index.php?id=172
Now, 30 years later, the military and scientific communities decide to revive the AKIRA project, deluded by narrow-mindedness into thinking they could control a power their predecessors could not.

# Minimizing a window to the system tray on a close event 3/13/2009 8:14 PM kevin Mocha

# re: Minimizing a window to the System Tray on a Close event 12/10/2009 4:44 PM Yucel

Thanks a lot for this good document.

# plus dresses 7/27/2011 2:47 AM plus dresses

http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net summer dresses
http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net summer dress
http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net plus size dresses
http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net/Bridesmaid-Dresses.html bridesmaid dresses
http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net/Flower-Girl-Dresses.html flower girl dresses
http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net">http://www.isweddingdress.net/Wedding-Dresses.html bridal gowns

# BAG 11/11/2011 7:30 AM Marc by Marc Jacobs Bags

As an influx of people, rather bare, better than the tasteless. <a href="http://www.marcjacobs-">http://www.marcjacobs-handbags.org/">Marc">http://www.marcjacobs-">http://www.marcjacobs-handbags.org/">Marc

Jacobs</a> designed the product, especially the main and sub-brand bag brand <a href="http://www.marcjacobs-">http://www.marcjacobs-

handbags.org/">Marc by Marc Jacobs Bags</a>, is a unique mix of taste. <a href="http://www.marcjacobs-">http://www.marcjacobs-

handbags.org/">Marc Jacobs Handbag</a> used almost mature female, are to be highly it. Young people's favorite

handbag comes <a href="http://www.marcjacobs-">http://www.marcjacobs-handbags.org/">Marc">http://www.marcjacobs-">http://www.marcjacobs-handbags.org/">Marc by Marc Jacobs Handbag</a>. As long as you are

stylish, with a focus on people, then you have to have them.

# underwear 11/24/2011 6:24 AM calvin klein underwear

The main function of underwear is more conducive to live and work. For men is to live in the root and eggs stretched, so as not to walk or do something random shaking, affecting work and life. For women, the menstrual period comes in an easy to absorbent pads good things, to avoid the outflow of blood affect the life and work. Then choose a suitable underwear becomes very important. <a href="http://www.underwear-sale.org">Calvin Klein Underwear</a> can help you do so. <a href="http://www.underwear-sale.org/womens-calvin-klein-c-48.html">calvin klein steel</a> and <a href="http://www.underwear-sale.org/mens-underwear-calvin-klein-underwear-c-42_46.html">calvin klein 365</a> series is especially good. We have <a href="http://www.underwear-sale.org">underwear sale</a>. In addition to these, this site also <a href="http://www.underwear-sale.org/aussiebum-retro-swimwear-c-44.html">aussieBum Swimwear</a> and so on. Welcome to win your favor. Thank you!

# Mackenzie 12/29/2011 2:40 AM tall christian louboutin

nation lady and sits around the tractor with her husband http://www.varyshoes.com/christian-louboutin-tall-boots-cld050-cld050-lady.html flip flop sandals which indicates they are going to reveal the pleasure and sorrow collectively with one another the invitation also indicate Lily Allen's curiosity in rural daily life Blue Coat College pupils rolled up in design at Rochdale City Hall to kick off the Oldham prom period Only rather of carrying a coloured swatch of his date's Marriage ceremony Celebration Presents gown all Rosko had to complete was appear to Jackson for confirmation the few matched http://www.varyshoes.com/christian-louboutin-sheep-leather-short-boots-black-379-lady.html sheep leather short boots black "We're heading to prom collectively" Rosko a platinum blond advised the store Prom worker when questioned <img src="http://www.varyshoes.com/images/uploads/classic_collection/LS053.jpg" Then arrived the giggles and stares http://www.varyshoes.com/fashion-collection.html">http://www.varyshoes.com/fashion-collection.html christian louboutin heels http://www.varyshoes.com/fashion-collection.html">http://www.varyshoes.com/fashion-collection.html red heels pumps "As quickly as we went in to the dressing area everybody began to whisper" Rosko stated "I feel it is amusing how individuals could be so Marriage ceremony Attire closed minded" Several tornadoes slammed western and central

# Mackenzie 12/29/2011 2:42 AM replica watches for sale

http://www.samewatches.com/Black-Dial-Arabic-and-Diamond-Hour-Markers-171538-gift.html">http://www.samewatches.com/Black-Dial-Arabic-and-Diamond-Hour-Markers-171538-gift.html rolex Cellini fake treatment of types view An uncomplicated excellent treatment after which elementary regimen provider training course does not only maintain the Rolex piece throughout perfect operating state for many years on the other hand will provide you with the feeling which you are presently placing on the totally new Rolex view everytime every person determine to put on the view Normal make a decision to put on and rehearse using the Rolex view preserve your view on fantastic likely form http://www.samewatches.com/Stainless-Steel-Granite-Dial-Men-16141-gift.html">http://www.samewatches.com/Stainless-Steel-Granite-Dial-Men-16141-gift.html Air King rolex watch By performing this you might be in a position to ensure a quantity concerning lubes using the movement If it isn't used on on a regular basis http://www.samewatches.com watches replica http://www.samewatches.com/All-Stainless-black-dial-diamond-hour-markers-1676-gift.html Prince http://www.samewatches.com/Ferrari.html fake Ferrari watches all of those lube may possibly perhaps shore up generating chaffing using the mobility In time http://www.samewatches.com/Rolex-Datejusts.html rolex fake watches this certain chaffing may perhaps deterioration the certain efficiency for your motion Should you can't use your key Rolex piece generally

# louis vuitton sale 2/1/2012 3:31 AM louis vuitton sale

Bags of many different models, materials and colors at the
louis vuitton sale

outlet can be significant along with ample, nevertheless quite trendy, fantastic requirement.Here is a world of
louis vuitton outlet

where you can find all kinds of new style and fashion Louis Vuitton bags. We really want to lead the trend and let our customer in the pursuit of luxury and fashion, satisfied the needs of customers.

# coach factory outlet 2/1/2012 4:53 AM coach factory outlet

If you do not know design can be the most fashionable this fall, consider a glance on
coach factory outlet

! This summer, you have a wide range of options, because there are numerous designs, you can find from.
coach factory online

is actually a stylish Coach online store to sell perfect quality and discount Coach handbags, Coach bags, Coach wallets and Cheap Coach Purse.If you love Coach,you will like to get the best price on it.

# christian louboutin uk 2/1/2012 4:53 AM christian louboutin uk

If you have enough leisure time, you may go to the mall or go to the christian franchised store to have a good look at varieties of
christian louboutin uk

the diverse styles and rich colors of the purses with low cost will surely impress you a lot!You will always get surprised by the beautiful colors and perfect details of
christian louboutin

.So come on, do not hesitate.

# final fantasy xi gil 2/1/2012 7:14 AM final fantasy xi gil

Wow gold http://virgolds.com/
buy eve online http://virgolds.com/Eve-Online-Isk/
final fantasy xi gil http://virgolds.com/Final-Fantasy-XI-Gil/
aion gold http://virgolds.com/Aion-Gold/

# coach bags 2/1/2012 10:05 AM coach bags

coach bags

with fashion style and top quality succeed. In any occasions they are very suitable and appropriate for its precise and rich design.
coach outlet store

vision system is a visual enjoy, is a visual art. The particular design has been integrated function and the element of elegancy, then show you an exquisite and excellent product.

# coach outlet online 2/2/2012 1:55 AM coach outlet online

Becoming a regular member of
coach outlet online

, you can even buy wholesale purses, handbags, leather wallets at preferential prices. Why not have a try?
coach factory outlet

is famous for the discounts it offers. Latest coach purses and sunglasses can be purchased at discounted rates from this coach outlet store.
http://www.coachoutletonlinecoachdays.com

# chanel uk 2/2/2012 1:55 AM chanel uk

Swarovski's Crystal is due to their commitment to consistency, precision and quality standards, and to the automatic cutting machine invented by the founder,
chanel bags

enjoy high reputation all over the world. They are designed for hand, elbow and shoulder carry thanks to comfortable flat leather handles.
http://www.chanel-outlet.org.uk

# coach outlet 2/2/2012 1:56 AM coach outle

coach outlet

sells products which are excellent in quality and reasonable in price. All customers can easily pick up their favorite Coach briefcase, wallets, shoes, hats, scarf, jewelry and sunglasses.If you need to acquire the focus, you need to sustain the
coach outlet store online

, which with stylish components that will immediately concoct you appreciably more attracting and outstanding.
http://www.coachoutletcoachstore.com

# coach factory outlet 2/2/2012 2:30 AM coach factory outlet

That experts claim coach factory outlet shopping is in the changes they are available in, which can make it well suited for benefit from to be a'luggage'bag. There are different kinds of crossbody bags within marketplace nowadays. Even so it is not possible to beat the timeless design jointly with traditional elegance of the Bags at the coach factory outlet online.
http://www.coachfactoryoutletonlinedays.com

# christian louboutin 2/2/2012 2:31 AM christian louboutin

This elegant and discreet pair of rhodium-plated button christian louboutin will add sparkle to your outfit. They are covered in clear crystal pave and reflect the light in magical ways. christian Madison Handbags and christian Poppy Bags are viewed among probably the most newsworthy among the particular christian louboutin uk so far.
http://www.christian-louboutinshoes.co.uk

# louis vuitton uk 2/2/2012 2:31 AM louis vuitton uk

More and more people can afford louis vuitton uk, not to say they are on sale. Price is not equivalent with value,they own classical style, fine materials, elaborate technique. If you want to catch up to the latest vogue, having Louis Vuitton Handbags of the latest styles can absolutely satisfy you.Just visit LV outlet webpage and select the most suitable products for yourself.
http://www.louisvuitton-full.org.uk

# coach factory outlet 2/2/2012 2:37 AM coach factory outlet

That experts claim coach factory outlet shopping is in the changes they are available in, which can make it well suited for benefit from to be a'luggage'bag. There are different kinds of crossbody bags within marketplace nowadays. Even so it is not possible to beat the timeless design jointly with traditional elegance of the Bags at the coach factory outlet online.
http://www.coachfactoryoutletonlinedays.com

# louis vuitton uk 2/2/2012 2:37 AM louis vuitton uk

More and more people can afford louis vuitton uk, not to say they are on sale. Price is not equivalent with value,they own classical style, fine materials, elaborate technique. If you want to catch up to the latest vogue, having Louis Vuitton Handbags of the latest styles can absolutely satisfy you.Just visit LV outlet webpage and select the most suitable products for yourself.
http://www.louisvuitton-full.org.uk

# christian louboutin 2/2/2012 2:37 AM christian louboutin

This elegant and discreet pair of rhodium-plated button christian louboutin will add sparkle to your outfit. They are covered in clear crystal pave and reflect the light in magical ways. christian Madison Handbags and christian Poppy Bags are viewed among probably the most newsworthy among the particular christian louboutin uk so far.
http://www.christian-louboutinshoes.co.uk

# coach outlet online 2/2/2012 2:37 AM coach outlet online

If you buy Coach items at the
coach outlet online

store, the goods will be sent out within 24 hours after confirming your payment and arrive to your door within 7 work days.
coach outlet

can provide the coach exactly the same is expected in a retail store. It can help you find bags of various colors, shapes and designs, which prove once again that the coach is actually a selection for the housekeeper.
http://www.coachoutletonlinecell.com

# chanel uk 2/2/2012 2:52 AM chanel uk

chanel uk have own characteristic designs. The beautiful crystals have added the magical finishing touch to countless bridal gowns. Just get some for yourself. I hope that I have helped you realize the potential for a breathtaking theme on your wedding day.Incorporating chanel handbags and pearls into your decor is a very fun and easy way to create a classic and warm setting.

http://www.chanel-bags.org.uk

# coach outlet store 2/2/2012 2:52 AM coach outlet store

Coach Outlet Store sells goods that are constructed to meet the highest standards of quality and functionality.You can trust it 100 percent. Wholesale coach outlet are even provided for VIP members. Haven't got your own Coach yet? Why not come to coach outlet store online outlet.

http://www.coachoutletstoreonlinegood.com

# coach outlet online 2/2/2012 2:52 AM coach outlet online

I got to know it from my elder sister who owns enviable luxury Coach bags. Coach Outlet Online Store is established to be your home shopping paradise. Coach New Signature BackPack Black Beige is a useful backpack for outdoors activities. It's convenient that you can freely take along with for travel,climbing and go for school.In our coach outlet,there are many graceful styles of Coach backpack for you.

http://www.coachoutletonlinefull.com

# louis vuitton uk 2/2/2012 4:03 AM louis vuitton uk

This
louis vuitton uk

for sale belongs to the sounding just what are termed as Louis Vuitton vintage best sellers, many other products and services for the reason that range appearing companies.I am so confused that I don,t even know where to buy the
louis vuitton

Handbags. Because I can prefer to chose the fashionable design, favorable price, top service .
http://www.louis-vuittonukoutlets.org.uk

# louboutin uk 2/2/2012 4:11 AM louboutin uk

Come by for dinner soon and check out the wine list for yourself. We are always here to help with selection. Cheers for the successful of christian
louboutin uk

.The christian Signature Hobo is from the latest release of
christian louboutin uk

. Its crisp, scribble material, leather handle, perfectly complements the relaxed shape of this stylish pouch.
http://www.christianlouboutinuk-sale.co.uk

Title
 
Name
 
Url
Comments   
Protected by Clearscreen.SharpHIPEnter the code you see: