Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What "growl" type notification windows are available for WPF (windows that appear and fade after X seconds)?

Tags:

c#

wpf

growl

I wanted to know if there are any good "growl" type notification windows available as open source or guided tutorials for WPF applications. I'm looking for a window that can appear when users save for example, notifying them that the save was successful and then disappears after X seconds (with a fade out) without the user needing to take the explicit action to close the notification window. This way for messages/notifications that require no confirmation, like the example, the user would not have to click "OK" to make the messagebox or dialog close.

like image 677
jend Avatar asked Jan 10 '11 02:01

jend


2 Answers

This link could help you:

http://www.codeproject.com/KB/WPF/wpf_notifyicon.aspx

It is a Pure WPF implementation of the NotifyIcon class from WinForms and supports almost everything normal WPF controls do :)

Cheers

like image 190
Machinarius Avatar answered Oct 24 '22 04:10

Machinarius


Why don't you use GrowlForWindows?

You can use C# or VB.

like image 35
Andrew Chaa Avatar answered Oct 24 '22 03:10

Andrew Chaa