Questions tagged [notification-area]

for questions about the system notification area (which is often called the system tray), on topics such as examining or adjusting the tray icons in the notification area, and issuing or capturing notification messages handled by the notification area. For questions about creating or modifying a single tray icon use the trayicon tag instead.

The system notification area is part of a graphical desktop environment which acts as an anchor point for notification messages issued by the operating system and by running applications, and also for application status icons called tray icons (see ).

The system notification area is often known as the system tray, though this is a misnomer, a hangover from a pre-release feature of Microsoft Windows 95.

In desktop environments that support a notification area, the area is easily accessible and always visible (though the user may have the option to customise its visibility). For example, in Windows XP and in KDE 4, the system notification area is nestled alongside the clock on the main taskbar. This allows important notifications to be noticed immediately by the user, and makes it convenient for the user to access the tray icon for a running application even if the application window is minimized or hidden.

46 questions
42
votes
6 answers

Show a Balloon notification

I'm trying to use the below code to show a Balloon notification. I've verified that it's being executed by using breakpoints. It's also showing no errors. What should I do to debug this since it's not throwing errors and not showing the…
Ben
  • 769
  • 2
  • 7
  • 17
17
votes
1 answer

Windows 7 style Notifications Flyouts in Delphi

Regarding Notification Area recommendations by Microsoft, I'm looking for ideas or a Delphi component to implement Notification Area Flyouts. The first "natural" idea is to use a standard Delphi form, but I'm facing two issues with it: I can't…
jachguate
  • 16,976
  • 3
  • 57
  • 98
13
votes
3 answers

The missing system tray icons on Fedora 19 Desktop Edition

Once installing Fedora 19 Desktop Edition, I run the systray of Qt Example. But I could not look for the system tray icon. There is no Notification area in the Activities overview. Please let me know to display the notification area or the tray…
tnrgus
  • 355
  • 1
  • 2
  • 14
10
votes
2 answers

How to create rich tooltips and rich balloons in notification area

I've been wondering, whenever you call the ShowBalloonTip method of the NotifyIcon class, you get a balloon tooltip like this: Fig1: Standard Balloon Tooltip Some applications and Microsoft products are able to display more than those 'simple'…
Alex Essilfie
  • 12,339
  • 9
  • 70
  • 108
10
votes
4 answers

How can I check if my application has focus?

What I want to do is check if my application has focus because if it is not then I will popup an Alert Window just over the Notification Area to display some message to the end user.
fossilz
  • 337
  • 4
  • 17
10
votes
2 answers

.NET: How to place my window near the notification area (systray)?

I'd like to display a little popup window next to the notification area. It's similar to what Outlook/Skype/Live! Messenger/etc does when it displays the notification about a new message. In my case it will have some input controls (textbox,…
Vilx-
  • 104,512
  • 87
  • 279
  • 422
7
votes
1 answer

Chrome Extension: close background page after closing Chrome

I have an extension with a background page, and by default this causes Chrome to persist after you close all windows, and puts the Chrome icon in the system-tray. I would like to avoid this -- I do not want my extension to cause the Chrome process…
Mala
  • 14,178
  • 25
  • 88
  • 119
6
votes
3 answers

How can I show a Notification Area Balloon and Icon from a Windows Service?

I have a Windows Service that is always running when the user starts their workstation. This Windows Service is critical and I would like to show a Balloon Notification in the Notification Area when certain things happen such as the Service Stops,…
Ryan R
  • 8,342
  • 15
  • 84
  • 111
6
votes
5 answers

How could I detect when my application is minimized?

I have a program with an option to enable minimizing to the taskbar's notification area. In order for this to work, I need a reliable way of detecting when the user has minimized the application. How can I do that using the Windows API in a C++…
6
votes
3 answers

Show a winform over the notification area

I want to show a winform in the very right down corner just above the system tray, How do I do that? Here is my code: public static void Notify() { Rectangle workingArea = Screen.PrimaryScreen.WorkingArea; Form fm = new…
Data-Base
  • 8,418
  • 36
  • 74
  • 98
5
votes
3 answers

How can I get the tooltips of notification-area icons?

I can enumerate the applications (handle,pid,path) with icons in the notification area, and I can control the position of the icons, but I can't get the tooltip. How can I enumerate systray icons including the tooltips?
Panos Kalatzantonakis
  • 12,525
  • 8
  • 64
  • 85
5
votes
1 answer

Select item from popup menu win32 api Python

I'm using python 2.7 (32-bit) on a windows 7 64-bit machine. I'm using the win32 Api to automate some windows tasks, also I'm new to python and win32 api. I saw similar questions but not in python and I had trouble understanding the code and sadly…
TheCodingGent
  • 110
  • 2
  • 10
4
votes
1 answer

How to check system tray availability programmatically?

Upon launching QSyncthingTray without any panel/trayer running, it displays an error dialog: I couldn't detect any system tray on this system. [ OK ] and exits upon pressing [ OK ]. Curiously though, if I…
uxer
  • 521
  • 3
  • 10
3
votes
1 answer

Which dialog spacing conforms to Windows UI/UX guidelines?

We are implementing a Windows 7 application that displays a pop-up in the taskbar's notification area. There are two version of the simple form. and the compact version: Which one is closer to Windows's UI guidelines? Is there a good reason to…
Evgenyt
  • 10,201
  • 12
  • 40
  • 44
3
votes
1 answer

Place an application's icon into system tray

I'm making a desktop mascot with unity, and I do not want to see the icon appearing on the task bar, I want the icon in the system tray. Is there a way to do this? PS: This is NOT a windows form (it's a game), so I believe Form.ShowInTaskbar will…
1
2 3 4