NotifyIcon.Click Event

Definition

Occurs when the user clicks the icon in the notification area.

C#
public event EventHandler Click;
C#
public event EventHandler? Click;

Event Type

Examples

The following code example demonstrates handling the Click event. This example assumes that you have added the code to a form containing a NotifyIcon object named NotifyIcon1.

C#
// Initialize the NofifyIcon object's shortcut menu.
private void InitializeContextMenu()
{
    MenuItem[] menuList = new MenuItem[]{new MenuItem("Sign In"),
        new MenuItem("Get Help"), new MenuItem("Open")};
    ContextMenu clickMenu = new ContextMenu(menuList);
    NotifyIcon1.ContextMenu = clickMenu;

    // Associate the event-handling method with 
    // the NotifyIcon object's click event.
    NotifyIcon1.Click +=new System.EventHandler(NotifyIcon1_Click);
}

// When user clicks the left mouse button display the shortcut menu.  
// Use the SystemInformation.PrimaryMonitorMaximizedWindowSize property
// to place the menu at the lower corner of the screen.
private void NotifyIcon1_Click(object sender, System.EventArgs e)
{
    System.Drawing.Size windowSize = 
        SystemInformation.PrimaryMonitorMaximizedWindowSize;
    System.Drawing.Point menuPoint = 
        new System.Drawing.Point(windowSize.Width-180, 
        windowSize.Height-5);
    menuPoint = this.PointToClient(menuPoint);

    NotifyIcon1.ContextMenu.Show(this, menuPoint);
}

Remarks

For more information about how to handle events, see Handling and Raising Events.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also