https://github.com/beached/notificationwindow
Displays a self hiding notification window.
https://github.com/beached/notificationwindow
Last synced: 11 months ago
JSON representation
Displays a self hiding notification window.
- Host: GitHub
- URL: https://github.com/beached/notificationwindow
- Owner: beached
- License: mit
- Created: 2014-10-04T00:57:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-15T05:20:52.000Z (over 9 years ago)
- Last Synced: 2025-01-07T21:12:32.587Z (over 1 year ago)
- Language: C#
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Notification Window
==================
A .Net Library to display a pop-up notification in the style of IM clients without forcing the user to respond or stealing focus. It will automatically disappear after a predetermined amount of time.
It is called by one of two static methods void AddMessage( string format, params object[] values ) and void AddErrorMessage( string format, params object[] values )
The parameters are like string.format.
e.g.
NotificationWindow.AddMessage( @"Your task completed at {0}", DateTime.Now );