Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 31,528 times

Related Categories

Using the NotifyIcon control

Rollershade

Drag the NotifyIcon control onto your form from the toolbox. Now to initialize the notify icon, the code is pretty simple it goes like this.

//SET THE BASICS UP
notifyIcon1.Icon = new System.Drawing.Icon (@"c:\1.ico");
notifyIcon1.Visible = true;
notifyIcon1.Text = "Test Notify Icon Demo";

You can set the above properties in design time aswell by using the properties window, to hide the notifyIcon you need to set the notifyIcon1.visible = false. You can add click and double click events to the icon by simply inserting this code into the private void InitializeComponent() part of the form:

this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);

You can now use the below code to show the double click on the icon:

private void notifyIcon1_DoubleClick(object sender, System.EventArgs e)
{
    MessageBox.Show("Icon Notify Double Clicked");
}

Now you will probably say great I can change the icon when an event happens in the program and I can see when the user has clicked on the icon to fire other events but how can i add a menu to the icon? Well its pretty simple you can use the ContextMenu control. As before drag and drop this control from the toolbox onto the form, a white container will appear at the top of the active form from where you can enter the menu items. To add this ContextMenu to the NotifyIcon you code it like

notifyIcon1.ContextMenu = contextMenu1;

The ContextMenu events work as they do with any other function calling the ContextMenu, by this i mean you create a event hander:

this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);

and then code the click like this:

private void menuItem2_Click(object sender, System.EventArgs e)
{
    MessageBox.Show("MenuItem2 Clicked");
}

I am 25 and live in west Sussex. I enjoy drinking and going out, but I also enjoy writing programs + creating websites in my free time. I play golf and ski.

One of my main intrests when not drinking ;) is programming , the tv can get boring as hell, i first started programming with HTML in 1996 ish and in early 1998 i started learning Visual Basic, i am now learning C#.NET frm Jan 2004. I have continued to learn and gain valuable knowledge from the vb diploma i have completed. While learning vb i became a member of this here Developerfusion.com which i have now become a Moderator at. Examples of my previous projects like WebEdit and EasyCSS can be found on my website.

Comments