A Balloon Tip is a special kind of tooltip which looks like a speech balloon. On Windows systems it is usually shown at the icon in the systray/notification area.
9
votes
4answers
984 views
How can I show a Balloon Tip over a textbox?
I have a C# WPF application using XAML and MVVM. My question is: How can I show a balloon tooltip above a text box for some invalid data entered by the user?
I want to use Microsoft's native balloon ...
2
votes
1answer
34 views
Why are balloontips delayed when the screen is locked?
An application I've written displays a balloon tip (using NotifyIcon.ShowBalloonTip()) when a certain event happens. This can also happen while the system is locked.
In this case the balloon tip does ...
1
vote
2answers
79 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
1answer
42 views
How to prevent balloon tips from accumulating?
My project runs an event based on a timer. Every time the event is ran it shows a balloon tip for 1 second. If the monitor goes to screen saver and the program continues to run in the background, the ...
1
vote
1answer
60 views
Is it bad to create an object twice from 2 different classes?
I have a main form where when a user clicks a button it brings up a balloon tip. The balloon tip is an object instantiated within my Main form class from my BalloonTip class. I then have a second form ...
1
vote
1answer
180 views
Balloon-tips with Qt
In my Qt application, I'd like to use balloons/balloon-tips as shown in the Windows user experience guide (not the system tray balloons).
Is this supported by Qt? I haven't found anything. Is there ...
0
votes
1answer
52 views
Balloon Tip on any control like notify icon?
I have a win form application with custom tray Icon like this:
I want to a notification with balloon tip to user like windows tray icon,
with close button and show to user for ever until pressed ...
0
votes
1answer
72 views
ShowBalloonTip(): message appears with delay
In Windows 7 64 bit, Visual Studio 2010 Express, C#, NET 2.0, Windows Forms, I have an option in a context menu that hides my application (or minimizes it) to an icon in the notification area. The ...
0
votes
1answer
64 views
Can I use a Balloon tip from one class, while the NotifyIcon resides in a different class?
I have my main form which has a NotifyIcon attached for balloon tips. I have a separate BalloonTip class which does some processing to determine what goes into the balloon. How can I use the ...
0
votes
0answers
44 views
How to get the BalloonHint size?
I need to position a TBalloonHint at the lower left corner, just above the taskbar.
To be able to calculate the position I need to know the Height and Width of the BalloonHint window.
I can't find ...
0
votes
3answers
104 views
How do I make a tooltip point at a specific label in C#?
In my application I want to use a tooltip to point at a label to get the users attention:
toolTip.IsBalloon = true;
toolTip.Show("message", label1);
The problem is that the balloon isn't pointing ...
0
votes
2answers
56 views
C# - Windows 2000 BalloonTip Events workaround
Ive been looking all over for a workaround for this but have found nothing besides "Just have them click the NotifyIcon".
Windows 2000 obviously does not support BalloonTip events but I need a way to ...