문제

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?

도움이 되었습니까?

해결책

Try to add this line in your form constructor

trayIcon.Icon = new Icon(SystemIcons.Application, 40, 40);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top