How to show taskbar notification in my C # application?

I want to show a taskbar notification in my application. How can I achieve this in C #?

+4
source share
2 answers

There's a good implementation of one of them here in CodeProject: TaskbarNotifier, skin pop-up MSN Messenger :

alt text

+4
source

You can use NotifyIcon

Also check out the community response in the comments for notable problems using NotifyIcon.

+6
source

All Articles