11

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?

dtsg
  • 4,408
  • 4
  • 30
  • 40
Tinoy Jameson
  • 403
  • 2
  • 7
  • 17

1 Answers1

21

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; }
Alex
  • 23,004
  • 4
  • 39
  • 73