Hi,
I am creating a NotifyIcon
and then calling this to show a balloon-tip from the system tray:
_trayIcon.ShowBalloonTip(100000, notifierTitle, notifierText, ToolTipIcon.Info);
Everything works fine but I wondered: is there any way to format the text in a system tray tooltip? (In my case, notifierText
)
Obviously, I am adding newline characters etc. but I would like certain parts to be bold or italic and maybe even add blue hyperlinked text to separate lines in the tooltip.
I am aware of the events that are available and they don't cover this sort of thing.
I'm sure I've seen it done elsewhere...
So is it possible, and if so, how do I do it??