To display an icon with text On Notify Icon

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?

+4
source share
1 answer

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; } 
+7
source

All Articles