Can NotifyIcon.ShowBalloonTip in C# be customized?
Posted
by badpanda
on Stack Overflow
See other posts from Stack Overflow
or by badpanda
Published on 2010-06-15T22:56:15Z
Indexed on
2010/06/15
23:02 UTC
Read the original article
Hit count: 529
Purely out of GUI vanity, I would like to make my task bar tool tip less...well, less "I wear a suit and work at Microsoft"-y. I can't seem to find a setting to do this, but I know that this particular function is relatively new so if anyone knows of a way to change the balloon look and feel I would very much appreciate a link or suggestion! Below is my code:
public static void shutdownWarning()
{
ToolTipIcon tipIcon = new ToolTipIcon();
tipIcon = ToolTipIcon.None;
TaskBarIcon.getInstance().mNotifyIcon.ShowBalloonTip(100, "", "Sending. Please do not shut down.", tipIcon);
}
Cheers!!
badPanda
© Stack Overflow or respective owner