Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ShowBalloonTip Not Working

On Windows 10, the ShowBalloonTip method of NotifyIcon NEVER shows the balloon tip. This would appear to have something to do with Windows itself.

If I go to Settings > System > Notifications & actions > and find my running app (vshost32.exe in debug mode) and click on it, then turn on Show notifications in the action center, I can clearly see the balloon tip messages being added to the notifications, but never a balloon tip.

I assume this is a problem with Windows 10.

My NotifyIcon is VISIBLE

my_icon.ShowBalloonTip("Title", "Message", BalloonIcon.Info);
like image 540
rmirabelle Avatar asked Feb 24 '17 17:02

rmirabelle


3 Answers

On my computer with Windows 10 version 1803, go to Settings > System > Notifications & actions, and turn on "Get notifications from apps and other senders". The ballontips from my WPF app will show up.

like image 118
Shangwu Avatar answered Nov 05 '22 05:11

Shangwu


Found the problem - was simple: Quiet Hours was turned on in the notification center and this was preventing the balloon tips.

like image 35
rmirabelle Avatar answered Nov 05 '22 05:11

rmirabelle


Turn off Focus Assist. If you are using second screen, turn off "When I'm duplicating my display" option. My settings is like that:

enter image description here

like image 3
sosa Avatar answered Nov 05 '22 07:11

sosa