1
private void SetBalloonTip()
        {
            notifyIcon1.Icon = SystemIcons.Exclamation;
            notifyIcon1.BalloonTipTitle = "Test";
            notifyIcon1.BalloonTipText = "test";
            notifyIcon1.BalloonTipIcon = ToolTipIcon.Info;
        }

        private void Form1_Click_1(object sender, EventArgs e)
        {
            notifyIcon1.Visible = true;
            notifyIcon1.ShowBalloonTip(30000);
        }

The settings/tools(Notification Area Icons) icon if i l cick on it i get into the Notification Area Icons. Anyway to make that the Balloon will be without this ?

EDIT**

Here is an image of the balloon and what i mean. I mean the icon looks like a wrench: I want to remove the wrench to disable it.

enter image description here

user2760148
  • 427
  • 2
  • 9
  • 19
  • Hard to guess what "tools/setting icon" might mean. Sounds like ToolTipIcon.Info, the one you asked for. – Hans Passant Sep 27 '13 at 11:38
  • Updated my question added also an image with what i mean. – user2760148 Sep 27 '13 at 12:00
  • Just realised what you meant. It's not easily possible as mentioned here http://stackoverflow.com/questions/13037168/how-do-i-remove-the-wrench-button-on-the-balloon-tooltip – keyboardP Sep 27 '13 at 12:04

1 Answers1

1

The balloon tip decorations are drawn by Windows, there isn't anything that you can do in your program to suppress them. Windows draws an X glyph in the upper right corner to give the user a target to click on to dismiss the tip. And the wrench glyph next to it invokes the configuration popup window that lets the user decide which icons are displayed and which are hidden.

Windows gives the user the tools he needs to make these icons effective and prevent them from flooding the taskbar. A significant problem in early versions of Windows, the notification area is very popular with programmers and they all think that their icon is the most important one. That did not work out well.

Feature, not a bug.

Hans Passant
  • 922,412
  • 146
  • 1,693
  • 2,536