6
votes
5answers
2k views
How to make a Windows Forms .NET application display as tray icon?
What needs to be done to have your .NET application show up in Window's system tray as icon?
And how do you handle mousebutton clicks on said icon?
3
votes
1answer
155 views
Why am I seeing multiple Systray Icons?
I've added a Notify Icon to my app, and quite often I see up to 3 copies of the notify icon in my systray. is there a reason for this?
is there a way to stop it from happening.
Often this persists …
2
votes
2answers
142 views
TrayIcon balloon does not show up
Hello, I compiled my trayicon utility c++ code in visual studio 2005 express edition and tray icon balloons showed up successfully but later I deleted my firewall, switched on to windows firewall and …
2
votes
6answers
2k views
Can you send a signal to Windows Explorer to make it refresh the systray icons?
This problem has been afflicting me for quite a while and it's been really annoying.
Every time I login after a reboot/power cycle the explorer takes some time to show up.
I've taken the step of …
1
vote
1answer
229 views
Can I re-gain a systray icon of a running app that has gone missing?
Since I've finally got an answer for this question: Can you send a signal to windows explorer to make it refresh the systray icons, that asks about getting rid of dead systray icons, I would like to …
1
vote
3answers
87 views
Correct behaviour for tray icon click?
When an application adds an icon to the system tray and minimises to it, there must be a way to restore it. However, when it comes to restoring the window I'm not sure what the 'correct' behaviour is …
1
vote
4answers
409 views
How can I show a systray tooltip longer than 63 chars?
How can I show a systray tooltip longer than 63 chars? NotifyIcon.Text has a 63 chars limit, but I've seen that VNC Server has a longer tooltip.
How can I do what VNC Server does?
1
vote
3answers
1k views
Problem with NotifyIcon.ShowBalloonTip - balloon not showing up
I'm having trouble with something that I thought would be easy...
I can't get my NotifyIcon to show a balloon tip. The basic code is:
public void ShowSystrayBubble(string msg, int ms)
{
…
0
votes
2answers
80 views
How to start WinForm app minimized to tray?
I've successfully created an app that minimizes to the tray using a NotifyIcon. When the form is manually closed it is successfully hidden from the desktop, taskbar, and alt-tab. The problem occurs …
0
votes
1answer
27 views
Systray bubble not showing up (with enabled baloons in XP)
Hi,
I was wondering what is wrong and after searching here I found out it could be due to disabled balloons, but thats not my case.
I am using simple code, but it doesnt work. Thank you
…
0
votes
1answer
118 views
Programatically forcing icons to be visible in the “notification area” /”systray”) in windows 7
Windows 7 allows users to hide/show icons in the "notification area" (aka systray).
By default I think they're hidden?
Is it possible to programatically (either through the app or through an …
0
votes
1answer
301 views
Delphi “Tray” icon (NotifyIcon) context-menu does not disappear when clicking outside it
I'm trying to show a popup menu when right clicking my Notification Icon, which works fine; But I want the menu to disappear when the user clicks outside of that menu.
It's supposedly by design (as …
0
votes
1answer
531 views
Problem with NotifyIcon: “Hide Inactive Icons” not working
Hi!
I am using C# (.NET 3.5) and use the NotifyIcon to enable "Minimize to Systray". Everything is working great, except that the shell registers the systray icon with the title "No title" when you …
0
votes
2answers
391 views
Systray context menu - why are my commands not enabled?
I'm creating a WPF app and have a system tray icon with a context menu. For the menu items I want to use WPF commands but when I assign them they are always greyed out even though the (same) commands …
