Notification API for windows - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:15:38Zhttp://stackoverflow.com/feeds/question/40177http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/40177/notification-api-for-windows3Notification API for windowsPeter Hoffmann2008-09-02T18:05:42Z2008-10-08T03:58:40Z
<p>Linux has libnotify and OS X has growl. Is there some kind of Notification API for Windows too? </p>
<p>It should be accessible via .Net languages.</p>
<p>Clarification:</p>
<p>Yes I'm looking for an way to send notification to the user, but it won't harm if one can subscribe to certain events with programs too. The linux libnotify uses a system wide D-Bus messaging system, which can handle all kind of events.</p>
http://stackoverflow.com/questions/40177/notification-api-for-windows/40185#401854Answer by Jordi Bunster for Notification API for windowsJordi Bunster2008-09-02T18:10:29Z2008-09-02T18:10:29Z<p><a href="http://www.fullphat.net/" rel="nofollow">Snarl</a> is a Growl look-alike, and Growl has an <a href="http://www.tripthevortex.com/growl/" rel="nofollow">alpha version for Windows</a>.</p>
http://stackoverflow.com/questions/40177/notification-api-for-windows/40329#403290Answer by Mark for Notification API for windowsMark2008-09-02T19:11:46Z2008-09-02T19:11:46Z<p>I am not familiar with Snarl or Growl, but the Windows OS and the .NET framework has extensive an event/message infrastructure.</p>
<p>Here are some articles for writing custom events in C#:
<a href="http://www.ondotnet.com/pub/a/dotnet/2002/04/15/events.html" rel="nofollow">http://www.ondotnet.com/pub/a/dotnet/2002/04/15/events.html</a></p>
<p><a href="http://www.csharphelp.com/archives2/archive470.html" rel="nofollow">http://www.csharphelp.com/archives2/archive470.html</a></p>
http://stackoverflow.com/questions/40177/notification-api-for-windows/40349#403491Answer by John Millikin for Notification API for windowsJohn Millikin2008-09-02T19:19:40Z2008-09-02T19:19:40Z<p>@Daren & Mark: The OP is talking about notifications, not event handling. Maybe they are called something else in Windows, but in Linux "notifications" are the alert bubbles that appear from icons in the notification tray.</p>
<p><img src="http://i37.tinypic.com/1jwvvt.jpg" alt="Notification in Windows" /></p>
http://stackoverflow.com/questions/40177/notification-api-for-windows/181283#1812831Answer by briandunnington for Notification API for windowsbriandunnington2008-10-08T03:58:40Z2008-10-08T03:58:40Z<p>growl, but for windows: <a href="http://code.google.com/p/growl-for-windows/" rel="nofollow">http://code.google.com/p/growl-for-windows/</a></p>