vote up 0 vote down star

This is a pretty stupid question, but here goes:

Is there a way (in .net) to force Windows to show your system tray icon instead of hiding it? I don't want to do this all the time, but at least for the first time my application is run I would like it to be visible in the system tray.

flag

2  
No, it does not need to be visible in the system tray. That is up to the user. Don't rely on your application being visible in the system tray, because it might not be. (as JP said, in Win7, users are in full control of it). – jalf Jun 6 at 2:11
1  
When did I say I was relying on anything? I just want to know if it's possible. – Andrew Jun 6 at 4:58

4 Answers

vote up 5 vote down check

Are you taking about Windows 7? If so, then no.

link|flag
3  
And thank god for that – jalf Jun 6 at 2:09
Thanks for the link. That's what I needed to know. – Andrew Jun 6 at 2:24
vote up 2 vote down

As Raymond Chen would say, "Imagine if this were possible." Now tell me how many apps would choose not to force their tray icon to be always visible! Everybody thinks their tray icon is the most important. If there was a programmatic way to say "show my tray icon all the time", we'd be back to Windows 95.

Configuration of tray-icon hiding is left to the user, on purpose. If you want to always see your tray icon on your computer, there's nothing stopping you. Just right-click on the expander button, click "Customize Notification Icons" (that's what it's called in Vista, may vary in other OS versions), find your app's tray icon in the list, and select "Show".

link|flag
vote up 1 vote down

The first time your tray icon is shown, it will be made visible, at least for a short time. The rest is left up to the user - if they want to hide it then you should really respect that decision.

link|flag
I have every intention of respecting the user's intentions. Thanks. – Andrew Jun 6 at 2:24
@Andrew: then there is nothing to do, it'll show on the first use – TM Jun 6 at 5:01
Unfortunately, that has not been the case in my testing. Maybe it's an anomaly, but I believe Windows is hiding my icon right off the bat. This will be confusing to some users. Just wanted to see if there was a way to go "Look at me. I'm down here!" right after installation. – Andrew Jun 6 at 5:05
vote up 1 vote down

There is no way to force it to be visible (as noted above, and rightly so), however if you show a balloon notification (like Windows Live Messenger does when you first try to close the window), your icon will appear while the balloon is visible. You could also use this to draw attention to your app to say "look at me, I'm down here!".

Please, for the sake of your users, make it only do this once, at most, though!

link|flag
Thanks for the advice. I may or may not try this approach. Even used once, I think the idea would be annoying to the user. Whatever I do, I promise to code responsibly. I hate programs that think they know what's best for me, too ;-) – Andrew Jul 27 at 16:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.