This component provides enhanced notify icon functionality not available in the standard Windows Forms NotifyIcon component. For instance, it allows you to display balloon tips from the system tray.
Use this component much like you would use its Windows Forms counterpart. To show a balloon tip, call the function ShowBalloon as shown in the code below.
notifyIcon.ShowBalloon("Testing NotifyIconEx", "This is a balloon tip. This is impossible to do with the standard NotifyIcon.", NETXP.Components.NotifyInfoFlags.Info, 3000);
Where notifyIcon is the name of your NotifyIconEx object.
The above code would produce this result:
For more information on the parameters of the ShowBalloon function, look up the function in the NetXP Reference.