C# Balloon Notification Popup over all other apps
Posted
by
user1114503
on Stack Overflow
See other posts from Stack Overflow
or by user1114503
Published on 2014-06-10T21:21:20Z
Indexed on
2014/06/10
21:24 UTC
Read the original article
Hit count: 186
I have a balloon popup (from a notifyIcon) in C# that works perfectly, unless there is a fullscreen application on the users monitor, such as a power point presentation. In that case, the popup doesn't show at all. However, once that app exits or is minimized (or the taskbar brought to front) you can see the balloon popups again.
Is there a way to make this popup show over all windows? Something like a form's "Top Most" setting? My code for the balloon is below if anyone needs it.
notifyIcon1.BalloonTipText = "Issue found!";
notifyIcon1.ShowBalloonTip(5000);
Thank you!
© Stack Overflow or respective owner