I have a win form application with custom tray Icon like this:

Left BOTTOM Corner of Form

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 close button):

Exapmle

Using tool tip in ballon mode can help me, But tool tip not have a close button.

Thanks.

link|improve this question

67% accept rate
Repeated question, I find this: [Add close button (red x) to a .NET ToolTip] stackoverflow.com/q/245045/440030 – Reza Arab Feb 18 at 8:25
feedback

1 Answer

Try using:

TaskbarIcon.ShowBalloonTip(10000,"Title","Message",ToolTipIcon.None);

this adds close button to baloon

link|improve this answer
In question i mentioned this is a custom tray icon,not a taskbar tray icon, see the images. – Reza Arab Feb 18 at 8:21
You can use custom controll like this codeproject.com/Articles/2681/Balloon-Windows-for-NET – Pavel Krymets Feb 18 at 8:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.