Click here to Skip to main content
Click here to Skip to main content
 

Adding a 'Minimize to tray'-button to a Form's caption bar

By , 11 Jul 2005
 

Introduction

This short article shows you how to easily implement a 'Minimize to Tray' button to the caption bar of the form. The code that comes with this article only supports default forms and it doesn't support Visual Styles. Feel free to improve the code and to contact me if you need any help with it. It would be great if you send me a copy when you fix these previously mentioned limitations so that I can update this article.

Background

The current program I am working on needs to run in the background. So the best way to do this is to minimize that app to the tray bar where it is less annoying than in the task bar. So I added some code which causes the program to minimize when the user wants to close it via the Close button in the caption bar. It worked and for a time it was good. But it was a bad, not user-friendly way of doing it. I wanted to have a 'Minimize to Tray' button like eMule has - after doing some research, I noticed that this has not been done before in C#.

Using the code

  • Step 1: Add the file 'MinTrayBtn.cs' to your project, and add the NotifyIcon component with your IDE's designer. Set an icon for the NotifyIcon component and set the visibility to false.
  • Step 2: Now simply declare a MinTrayBtn variable in your Windows Form class to instantiate the object in the Form constructor.
    public class WinForm : System.Windows.Forms.Form {
    
        //... Some other code
        TyronM.MinTrayBtn mybutton;
        //... Some other code
    
        public WinForm() {
            mybutton = new TyronM.MinTrayBtn(this);
        }
    
    }
  • Step 3: Add a function to catch the MinTrayBtnClicked event and register the event handler. Use the Click-event of the NotifyIcon, then show the Form again.
    public class WinForm : System.Windows.Forms.Form {
        
        //... Some other code
        TyronM.MinTrayBtn mybutton;
        //... Some other code
    
        public WinForm() {
            mybutton = new TyronM.MinTrayBtn(this);
            mybutton.MinTrayBtnClicked += 
              new TyronM.MinTrayBtnClickedEventHandler(TrayBtn_clicked);
        }
        
        private void TrayBtn_clicked(object sender, EventArgs e) {
            this.Hide();
            this.notifyIcon1.Visible = true;
        }
    
    
        private void notifyIcon1_Click(object sender, System.EventArgs e) {
            this.Show();
            this.notifyIcon1.Visible = false;
        }
        
    }

Points of Interest

The caption bar is part of the non-client area of the window which is handled by Windows, so it isn't easy to add a button there. I had to draw the button by myself and capture various mouse events to clone the behaviour of the other buttons (this button behaves exactly like the others do, or at least it should do :)

Revision

  • 0.8.5

    11 Jul 2005

    • Changed: Variable caption button size (adjusts itself to the system metrics).
    • Fixed: Drawing issues on changes of the window width.
  • 0.8

    20 Apr 2005

    • Article creation.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Tyron Madlener

Austria Austria
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generaldoent work on windows 7memberbilliout8-Sep-10 5:36 
GeneralRe: doent work on windows 7memberTyronM3-Oct-10 3:09 
GeneralRe: doent work on windows 7memberbkaratte6-Aug-11 4:02 
GeneralIs it possible to add that to all windows which gets openmemberPrasanna Bhat7-Dec-09 4:02 
QuestionWTF no compiled .exe in both downloads?memberpathomax9-Jun-08 23:34 
Generalcannot convert file in visual studio 2005memberyvanc15-May-08 16:55 
Generalfacing problem when from is resize dynamicallymemberyeshwantraut27-Dec-07 6:18 
Generalremove when clickedmemberhamid_m14-Jun-07 5:10 
Generalnever clickedmemberhamid_m14-Jun-07 4:54 
QuestionPlease can you help ??memberJustDeveloper14-May-07 0:54 
AnswerRe: Please can you help ??memberTyronM8-Jun-07 8:01 
GeneralThanks !memberFXMC26-Dec-06 2:26 
GeneralAny books related to this type of programmingmemberdseknat20-Sep-06 20:06 
GeneralRe: Any books related to this type of programmingmemberBehind The Scene20-Sep-06 20:36 
NewsExample Themed Buttonmembertoertchn28-Feb-06 10:14 
GeneralRe: Example Themed Buttonmembertayspen18-Mar-06 9:40 
GeneralRe: Example Themed Buttonmembertoertchn18-Mar-06 9:43 
AnswerRe: Example Themed Buttonmemberp-gregg23-Jul-07 1:35 
GeneralRe: Example Themed Buttonmembersameh_serag11-Mar-08 5:52 
GeneralWhen I Max. MDIChild it does not draw Buttonmemberfayaz var13-Jan-06 23:54 
GeneralRe: When I Max. MDIChild it does not draw Buttonmembersameh_serag11-Mar-08 5:45 
try this:
 

.
.
.
public MinTrayBtn(Form parent)
{
parent.HandleCreated += new EventHandler(this.OnHandleCreated);
parent.HandleDestroyed += new EventHandler(this.OnHandleDestroyed);
parent.TextChanged += new EventHandler(this.OnTextChanged);
parent.MdiChildActivate += new EventHandler(parent_MdiChildActivate);
this.parent = parent;
}
.
.
.
private void parent_MdiChildActivate(object sender, EventArgs e)
{
DrawButton();
}


QuestionHow to Add in MDIChild Formmemberfayaz var3-Jan-06 18:50 
AnswerRe: How to Add in MDIChild FormmemberTyronM5-Jan-06 8:41 
Generalvarious buttons for winXP skinsmemberJon Hary22-Oct-05 5:04 
Generalconvert to VB.NETmemberjugomkd22-Jul-05 8:34 
GeneralRe: convert to VB.NETsussAnonymous25-Jul-05 14:03 
GeneralRe: convert to VB.NETmemberjugomkd25-Jul-05 22:49 
GeneralRe: convert to VB.NETmember1tg4625-Aug-05 4:07 
GeneralRe: convert to VB.NETmemberjugomkd26-Aug-05 16:48 
AnswerRe: convert to VB.NETmember1tg462-Sep-05 5:00 
GeneralRe: convert to VB.NETmemberfayaz var7-Jan-06 0:47 
GeneralRe: convert to VB.NETmembershabonaa6-Jan-06 10:12 
GeneralAdd NotifyIcon Componentmemberemc218-Jul-05 6:44 
GeneralRe: Add NotifyIcon ComponentmemberTyron Madlener18-Jul-05 8:49 
GeneralWM_NCMOUSELEAVE eventmemberkobalcz7-Jul-05 23:32 
GeneralRe: WM_NCMOUSELEAVE eventmemberTyron Madlener9-Jul-05 4:01 
QuestionXP version ?membersbouli6-Jun-05 2:24 
AnswerRe: XP version ?member1tg463-Sep-05 2:11 
GeneralNice... but...memberCarl Mercier20-Apr-05 7:10 
GeneralRe: Nice... but...memberTyron Madlener21-Apr-05 1:51 
GeneralRe: Nice... but...memberGeminiMan21-Apr-05 6:52 
GeneralRe: Nice... but...memberSuper Lloyd25-May-05 12:43 
GeneralRe: Nice... but...memberHumanOsc13-Jul-05 3:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 12 Jul 2005
Article Copyright 2005 by Tyron Madlener
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid