Need some helps about NotifyIcon !

webmastx

New member
Joined
Oct 2, 2009
Messages
2
Programming Experience
Beginner
I have 3 questions about NotifyIcon BalloonTip below

1. How to set NotifyIcon BalloonTip behavior to Always Show.
2. How to add Textlink or Button to The BalloonTipText.
2. How to show BalloonTipText when mouse over.


Many thanks
 
Last edited:
1. Not possible, read help for NotifyIcon.ShowBalloonTip Method (Int32) (System.Windows.Forms)
2. Not possible, I can see no member of this class that will allow anything like that: NotifyIcon Members (System.Windows.Forms), only BalloonTipClicked event allow you to detect if balloon is clicked.
3. Not possible, at least I can see no usable event: NotifyIcon Events (System.Windows.Forms)

1-3: It sounds to me that you are trying to reproduce the behaviour of a Form with the NotifyIcon Balloon, why not use a Form? Perhaps with no title bar... perhaps custom balloony look.
 
Back
Top