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
3
votes
1 answer

Alternate showing/hiding window when notify icon is clicked

I'm implementing a Windows 7/Vista-style notification area ('system tray') pop-up application in WPF. I've written about my work so far here (determining the notify icon's position, disabling resize, etc.). There is one problem that I haven't solved…
Quppa
  • 1,841
  • 20
  • 18
3
votes
1 answer

Is the Windows 7 Task Bar the new Notification Area?

I've seen a few Windows 7 applications popping up around the web that take advantage of the new task bar functionality. However, some of these applications are treating the task bar like the notification area. There is no foreground window. All…
David Brown
  • 35,411
  • 11
  • 83
  • 132
2
votes
1 answer

Notification icon tooltip not showing despite properly setting szTip

I am trying to make a small system tray program with only a context menu as its GUI. However, I cannot get the tooltip to work. I properly setup NOTIFYICONDATA's szTip and everything else seems to work...what is preventing the tooltip from showing…
Joshua
  • 1,148
  • 3
  • 17
  • 34
2
votes
0 answers

Win toast / balloon notifications stopped working recently on windows 10 with Qt

To me it seems windows balloon messages stopped working completely some weeks ago on windows 10. In August 2019 the following code based on Qt could be used to post a notification in the windows action center, and letting a toast pop up with that…
user1882245
  • 101
  • 1
  • 4
2
votes
3 answers

App Won't Show Balloon Tip

I am writing a VB.NET application in VS2017, to run on Windows 10. I want the main (and only) Form to minimize down to a System Tray icon. That part I have working fine. The next part, display a Balloon Tip popup notification (e.g., "Application…
David Mancini
  • 428
  • 7
  • 20
2
votes
1 answer

C++ event handling for click on notification area Icon Windows

I want to achieve some kind of event handling for Windows. I have a program, that has a symbol in the Notification Area (System Tray) and I want the programm to show up again, when the user clicks on the Icon. Is there a simple Way to implement that…
Andossus
  • 55
  • 6
2
votes
3 answers

Retrieve WP system tray (notification area) height

For some control layout calculations, I need to know the height of the notification area. Sure, I know that it equals 32 pixels in portrait mode in WP 7/8/8.1, but it's not a good idea to hard code this value for the future releases of the OS. How…
TecMan
  • 2,743
  • 2
  • 30
  • 64
2
votes
1 answer

Simulating right click on system tray icon and clicking on context menu in C++

I am a Python developer with a little knowledge of C++. With that said, I would like to understand how I can right click on a system tray icon, and click on one of the options on the context menu. I have looked around the internet and was unable to…
2
votes
1 answer

Possible to continuously update text in the notification area?

I would like a to place persistent text in the notification area that updates once every second. setTicker() in the NotificationCompat.Builder class will not work, because it hides everything else in the notification area. I am only looking to…
Dick Lucas
  • 12,289
  • 14
  • 49
  • 76
1
vote
2 answers

progress bar in Notification area is not closing and not starting the second progress bar

in my app i have 4 buttons and when the user clicks any of the button it starts downloading a file and the progress bar gets shown in the notification area. The downloading and progress bar is working fine, but i have the following two…
Siva K
  • 4,968
  • 14
  • 82
  • 161
1
vote
0 answers

Get list of programs in notification-area using Python

Is it possible to get the list of actual programs (text obtained by mouse hover on icons [Example below]) in notification-area (System-tray) on Windows using Python ? Example of notification-area in Windows 7
Soufian
  • 61
  • 6
1
vote
1 answer

Creating a menu bar icon without having a visible running application associated with it

I want to create a menu bar icon that is not associated with a running application. Just like dropbox's menu bar icon doesn't appear as an open application, but only on the menu bar. What I got so far is the code for adding the menu bar…
Robin
  • 1,927
  • 3
  • 18
  • 27
1
vote
2 answers

Are Windows-GUI calls (creating visible windows, etc.) allowed in a Windows-Service?

First off, I know some proper ways of making a truly interactive Windows Service. The situation is, I do have a tool that does not interact with the user as such. However, it does display non-blocking notifications both via popup windows and via the…
Martin Ba
  • 37,187
  • 33
  • 183
  • 337
1
vote
2 answers

Returning to Window previously selected before clicking Notification Area Icon

I have built an application that has a Notification Area Icon, which when clicked brings up a form that is designed for a single click, after which the user can then return to what they where doing before hand. Currently, I am using this.Hide() to…
topherg
  • 4,203
  • 4
  • 37
  • 72
0
votes
1 answer

Changing style of the system tray icon at run time

I've created a system tray application using c#. And it is running successfully. Now the problem is, a notification window that has to be popped up when a particular event occurs(Not with a new icon but for the same icon which present in the…
Narmadha
  • 3
  • 1
  • 3