ARTICLE

Notify Icon in VB.NET

Posted by Mahesh Chand Articles | Windows Controls August 26, 2010
In this article, I will discuss how to add a system tray icon for an application using the NotifyIcon in a Windows Forms application using Visual Studio 2010.
Download Files:
 
Reader Level:

NotifyIcon Component

A NotifyIcon component is used to add system tray notification functionality to a Windows Forms application. When a n application is ran, an icon will be added to the system tray and we can add double click or menus to the icon to take some actions.

In this article, I will discuss how to add a system tray icon for an application using the NotifyIcon in a Windows Forms application using Visual Studio 2010.

Creating a NotifyIcon

A NotifyIcon control does not have a visual representation and works as a component in the background. To create a NotifyIcon we can either user the NotifyIcon class or the Form designer.

To add a NotifyIcon to a Windows Forms application, drag a NotifyIcon component to the Toolbox onto a Form.

After adding a NotifyIcon, first thing you would want to do is to add an Icon that would be displayed in the icon tray. We can do this by clicking on little handle on the NotifyIcon and select Choose Icon link as shown in Figure 1.

NotifyIconImg1.jpg
Figure 1

NotifyIcon Events

In a typical scenario, we double click on an Icon to open an application user interface and right click on an icon to open a context menu. Figure 2 shows the events associated with a NotifyIcon and we are going to set DoubleClick event handler and on double click, we will open the application.

NotifyIconImg2.jpg
Figure 2

Now before we proceed, we are going to add a ContextMenu using a ContextMenuStrip control that will be opened when right mouse click event is fired on the system tray icon. The ContextMenu is shown in Figure 3.

NotifyIconImg3.jpg
Figure 3

 

The code for the ContextMenu item event handlers is listed below were on Execute menu item, we are going to activate the application and on Close menu item, we are going to exit the application.

    Private Sub ExecuteToolStripMenuItem_Click(ByVal sender As System.Object, _

        ByVal e As System.EventArgs) Handles ExecuteToolStripMenuItem.Click

        Me.Activate()

    End Sub

 

    Private Sub CloseToolStripMenuItem_Click(ByVal sender As System.Object, _

            ByVal e As System.EventArgs) Handles CloseToolStripMenuItem.Click

        Me.Close()

    End Sub

 

Setting ContextMenu

Now we add the following code on the Form initialization to set ContextMenu of the NotifyIcon.

notifyIcon1.ContextMenuStrip = contextMenuStrip1;

 

Here is the mouse double click event handler where we simply activate the Window.

Private Sub NotifyIcon1_MouseDoubleClick(ByVal sender As System.Object, _

        ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseDoubleClick

        If (Me.WindowState = FormWindowState.Minimized) Then

            Me.WindowState = FormWindowState.Normal

            Me.Activate()

        End If

    End Sub

 

Summary
In this article, we discussed how to create a NotifyIcon control in Windows Forms and set its various properties and events.

Login to add your contents and source code to this article
share this article :
post comment
 
Become a Sponsor
PREMIUM SPONSORS
  • ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications. Visit DynamicPDF here
    Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Become a Sponsor