Listing 2 Pseudocode for handling a right-click mouse event to display the context menu
private void ShowContextMenu() { // Win32 is an arbitrary namespace representing the class // you use to import the Win32 API functions and structures // used in the pseudo-code. // POINT is the Win32 POINT structure imported POINT pt; if (ContextMenu != null) { pt = new POINT(); Win32.GetCursorPos(pt); // this.window.Handle is a private member not callable from outside the // NotifyIcon class! Win32.SetForegroundWindow(this.window.Handle); // Raise the Popup event on the ContextMenu class ContextMenu.OnPopup(EventArgs.Empty); // Display the menu Win32.TrackPopupMenuEx(ContextMenu.Handle, TPM_LEFTALIGN, pt.x, pt.y, this.window.Handle, null); // Force a task switch to the application that called TrackPopupMenuEx // (this appliaction). This can be accomplished by posting a // dummy message to the window or thread. (See KB 135788) Win32.PostMessage(this.window.Handle, WM_NULL, IntPtr.Zero, IntPtr.Zero); } }