Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Notification Balloon Size

I have here a windows forms application using NotifyIcon

Everything works perfectly fine in Win 7 environment, until Win10 came...

The content of my notification balloon has 9 lines.

But when I run my app in Win10, some lines of the notification content are not shown in the balloon.

How can I resize the balloon in Win10?

[Correct] Win 7 notification:

enter image description here

[Not Good] Meanwhile in Win 10:

enter image description here

[UPDATE] Notification balloon won't show in 64-bit os. 😴

like image 741
CMA Avatar asked Jun 04 '15 11:06

CMA


1 Answers

I don't believe this is possible without hacking, but if you want to some examples on doing this are written here: http://www.codeproject.com/Articles/37912/Embedding-NET-Controls-to-NotifyIcon-Balloon-Toolt

I would advice you, if this is even possible, to move to WPF (or use a mix). For WPF there is a component which allows you to use custom popups. All the information on this can be found here: http://www.hardcodet.net/wpf-notifyicon

like image 153
Robin Krom Avatar answered Oct 02 '22 03:10

Robin Krom