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

NotifyIcon in System Tray with Context Menu Using C#

By , 5 Oct 2007
 

Screenshot - systemTray.jpg

Introduction

Using the NotifyIcon component, we can put our application icon on the system tray and use a ConextMenuStrip to control the menu in the system tray.

Background

The function of the ConextMenuStrip is the similar to that of the menu bar. It will appear only when we right click for it.

Screenshot - conextmenu.jpg

Using the code

The code for this application is very simple, you just need to know how to use it. Code for restore application, open settings, close from system tray are listed in this section:

namespace NotifyIcon
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            Use_Notify(); // Setting up all Property of Notifyicon 
        }

        private void Use_Notify()
        {
            MyNotify.ContextMenuStrip = contextMenuStrip1; 
            MyNotify.BalloonTipText = "This is A Sample Application";
            MyNotify.BalloonTipTitle = "Your Application Name";
            MyNotify.ShowBalloonTip(1); 
        }

        private void Form1_Resize(object sender, System.EventArgs e)
        {
            // Hide The Form when it's minimized
            if (FormWindowState.Minimized == WindowState)
                Hide();
        }
        private void MyNotify_DoubleClick(object sender, System.EventArgs e)
        {
            // Show the form when Dblclicked on Notifyicon
            Show();
            WindowState = FormWindowState.Normal;
        }
        private void closeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            // Will Close Your Application 
            MyNotify.Dispose();
            Application.Exit();
        }

        private void restoreToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Will Restore Your Application 
            Show();
            WindowState = FormWindowState.Normal;
        }

        private void settingsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Settings 1
            MessageBox.Show("Your Application Settings 1");
        }

        private void settings2ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Settings 2
            MessageBox.Show("Your Application Settings 2");
        }
    }
}

You can apply this in any of your applications.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Abhijit Jana
Software Developer (Senior)
India India
Member
.NET Consultant | Former Microsoft MVP - ASP.NET | CodeProject MVP, Mentor, Insiders| Technology Evangelist | Author | Speaker | Geek | Blogger | Husband
 
Blog : http://abhijitjana.net
Web Site : http://dailydotnettips.com
Twitter : @AbhijitJana
My Kinect Book : Kinect for Windows SDK Programming Guide

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   
Questioniconmembersmpaliwal29 Mar '13 - 21:18 
GeneralMy vote of 1memberJetro2236 Dec '12 - 2:43 
QuestionNot bad!memberBruceL5 Jul '11 - 3:11 
GeneralMy vote of 1memberMember 32246509 Mar '11 - 22:30 
GeneralMy vote of 4memberhoerst23 Oct '10 - 0:15 
GeneralMy vote of 1memberJohnAndre24 Aug '10 - 23:09 
GeneralMy vote of 5memberMember 43370486 Aug '09 - 22:03 
GeneralRe: My vote of 5mvpAbhijit Jana9 Aug '09 - 21:33 
GeneralMy vote of 1memberIngvarr24 Jul '09 - 1:06 
GeneralRe: My vote of 1mvpAbhijit Jana26 Sep '09 - 22:37 
General[My vote of 1] where is the codememberDonsw28 Jun '09 - 14:43 
GeneralMy vote of 1memberayo1016 Jun '09 - 10:31 
GeneralMy vote of 1memberPri N T8 Jan '09 - 17:02 
GeneralWhere's the code for 'MyNotify'memberMark19753 Apr '08 - 14:37 
GeneralRe: Where's the code for 'MyNotify'mvpJohn Simmons / outlaw programmer20 Apr '08 - 4:13 
GeneralNotify icon stays in tray...memberMark James Newman11 Oct '07 - 12:53 
GeneralRe: Notify icon stays in tray...memberAbhijit Jana15 Oct '07 - 19:14 
GeneralRe: Notify icon stays in tray...memberMark James Newman16 Oct '07 - 3:31 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 6 Oct 2007
Article Copyright 2007 by Abhijit Jana
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid