up vote 2 down vote favorite
share [g+] share [fb]

How would one go about displaying taskbar notifications?

I want to write an app that periodically displays a flash card esque notification, the intention is to see if a 5 second or so distraction every hour can help with language learning.

Target language is c#

link|improve this question

77% accept rate
feedback

3 Answers

up vote 2 down vote accepted

For the application you describe, I probably wouldn't use a notification icon or taskbar icon. You'll likely need a larger window displayed, with larger font.

I'd open a frameless window (possibly faded or scrolled into view) that sits in the lower-left of the desktop. (Although of course remember that not everyone has the taskbar at the bottom of the screen).

As an example, look at what Outlook or many RSS readers do to notify of new messages - this feature is commonly called a "toast" pop-up.

link|improve this answer
How do you get a frameless window? – Omar Kooheji Oct 20 '08 at 10:46
feedback

In .NET you can use the Notification Icon to place a notification in the system tray.

link|improve this answer
You can combine this with a custom application context to not require a form at all, and just use the balloon text. It works very well. – Mitchel Sellers Oct 20 '08 at 14:12
feedback

If you want to go the WPF route you might look at CodeProject http://www.codeproject.com/KB/WPF/WPF_TaskbarNotifier.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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