Search code examples
c#notificationssystem-traytray

c# - Tray Icon not showing


I have a NotifyIcon set up on my main form, however when the form ran the notification icon doesn't appear?

I have it's visible attribute set to true and if I try to show a balloon tooltip:

ntiTrayIcon.ShowBalloonTip(1000, "Info:", "Double click this icon to close AlwaysOnTop", ToolTipIcon.Info);

That doesn't show either.

What's the problem?

Some Info on the form: It's a SizeableToolWindow and it has no control box or caption (so it shows up as just the borders) and it gets hidden after a while (it's essentially a splash screen that registers some global keyboard hooks), would this be the problem?


Solution

  • Try to add this line in your form constructor

    trayIcon.Icon = new Icon(SystemIcons.Application, 40, 40);