Tagged Questions
The notification-area tag has no wiki summary.
12
votes
1answer
2k views
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 ...
4
votes
3answers
365 views
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 ...
3
votes
1answer
48 views
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 ...
3
votes
2answers
551 views
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.
3
votes
2answers
654 views
.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 ...
3
votes
1answer
584 views
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 ...
2
votes
2answers
380 views
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 ...
2
votes
1answer
632 views
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, ...
1
vote
2answers
59 views
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 ...
1
vote
2answers
132 views
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 ...
0
votes
1answer
61 views
How to show systray tooltip longer than 128 characters
According to MSDN, NOTIFYICONDATA::szTip only supports 128 characters of text. How do I workaround this limitation and show longer tooltip text?
0
votes
2answers
493 views
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 ...
0
votes
3answers
812 views
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 = ...