How to display text on hover over notifyicon in C #. Since ShowBalloonTip shows with respect to timeout, how can I display text when I hover over a notification icon?
The text property of the NotifyIcon class is what you need
. The text is displayed as a hint when you hover over the icon.
public string Text { get; set; }