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