Tinoy Jameson
Tinoy Jameson

Reputation: 413

To display Text On Notify Icon Mouse Over

How to display text on mouseover of notifyicon in c#.Since the ShowBalloonTip shows with respect to the timeout, how can i display the text on mouseover of the Notify Icon?

Upvotes: 11

Views: 10409

Answers (1)

Alex
Alex

Reputation: 23300

Text Property of NotifyIcon class is what you need

.Text is rendered as a tooltip when you hover over the icon.

public string Text { get; set; }

Upvotes: 22

Related Questions