Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#
Article

An Alternative Implementation of the NotifyIcon Class

Rate me:
Please Sign up or sign in to vote.
4.95/5 (59 votes)
12 Apr 20023 min read 427.8K   13K   143   115
A wrapper class for notification icons (tray icons) with support for balloon tips.

Sample Image - NotifyIconEx_img.png

Introduction

I recently wrote a Visual Source Safe sniper application. The purpose of this program is to wait patiently in the background for selected Visual Source Safe files to be checked in by fellow programmers. When the files become checked in the sniper checks these file out and notifies the user. This seemed like a perfect job for a notification icon. I was dismayed however to find out that the .NET class library's NotifyIcon class does not support balloon tips which are currently provided by the newer version of the common control library. This led to my CodeProject article 'Displaying a Notify Icon's Balloon Tool Tip'. However this approach was a hack at best and did not allow the application to receive notification when the balloon tip was clicked. So I decided to bite the bullet and write my own NotifyIcon class which would give me the ability to do everything I wanted.

Functionality

I have kept the functionality of this class to the minimum of what I think is useful. For example I do not handle mouse move messages over the notification icon as I can't think of any good use for these messages. However adding this functionality is quite easy.

List of Features

  • Fires the events 'Click', 'Double Click', 'Click Balloon'
  • Declares properties 'Visible', 'Icon', 'Text', 'Context Menu'
  • Removes icon from notification area when garbage collected (there you go Nish)
  • Re-adds icon if explorer restarts
  • Provides the method ShowBalloon(string title, string text, int timeout)

How It Works

My class uses a similar approach to the .NET class in that it creates a hidden window to receive messages from the notify icon. These messages are then forwarded to the main class NotifyIconEx where they are filtered according to the notification icon's numeric ID. My class can be used to add multiple notify icons and all messages are handled by the one hidden window. At this point I must admit that I used the 'Anakrino' decompiler to take a peek at some of the code used to implement .NET's NotifyIcon class. I mainly used this to figure out how to display the context menu at the correct location and how to make sure that when you click outside of the menu it closes for you.

Platform invoke methods are used quite extensively in this class which is unfortunate but necessary. Hopefully as .NET matures the class library will expand to allow more advanced manipulations of windows and system functions but until then it's either scrap the cool feature or fall back to the Win32 API.

Problems Encountered

I must admit that the documentation concerning the balloon tip does not seem to match the behaviour. The timeout value does not seem to work. I could not get the correct windows message when the balloon is closed by the 'x' button. I get the 'timeout' message whether the balloon times out or it is closed by the user. Let me know if I have done anything wrong in regards to these issues or if anybody gets different results than I did on my XP machine.

Watch Out

I must warn you that if you use my NotifyIconEx class at the same time as NotifyIcon strange things may happen. See if you can figure out why.

Sign Off

I think you will find that my class is as simple to use is that supplied by .NET, if not simpler (you do not have to explicitly remove my icon when your application exits). You should be able to add the class to the toolbox and drag and drop it using the form designer as you can with the built in class.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here



Comments and Discussions

 
GeneralRe: how bout old versions of windows? Pin
Joel Matthias16-Apr-02 6:27
Joel Matthias16-Apr-02 6:27 
GeneralRe: how bout old versions of windows? Pin
Andy Smith16-Apr-02 8:07
Andy Smith16-Apr-02 8:07 
GeneralRe: how bout old versions of windows? Pin
Joel Matthias16-Apr-02 8:16
Joel Matthias16-Apr-02 8:16 
GeneralRe: how bout old versions of windows? Pin
Andy Smith16-Apr-02 8:38
Andy Smith16-Apr-02 8:38 
GeneralRe: how bout old versions of windows? Pin
Joel Matthias16-Apr-02 10:06
Joel Matthias16-Apr-02 10:06 
GeneralRe: how bout old versions of windows? Pin
Andy Smith16-Apr-02 12:38
Andy Smith16-Apr-02 12:38 
GeneralRe: how bout old versions of windows? Pin
Joel Matthias16-Apr-02 12:46
Joel Matthias16-Apr-02 12:46 
GeneralRe: how bout old versions of windows? Pin
Andy Smith16-Apr-02 13:35
Andy Smith16-Apr-02 13:35 
GeneralRe: how bout old versions of windows? Pin
Joel Matthias16-Apr-02 13:40
Joel Matthias16-Apr-02 13:40 
GeneralRe: how bout old versions of windows? Pin
Andrew Connell17-Jul-02 9:57
Andrew Connell17-Jul-02 9:57 
GeneralRe: how bout old versions of windows? Pin
Joel Matthias17-Jul-02 10:02
Joel Matthias17-Jul-02 10:02 
QuestionJoel, which was easier? Pin
Andy Smith12-Apr-02 5:39
Andy Smith12-Apr-02 5:39 
AnswerRe: Joel, which was easier? Pin
Joel Matthias12-Apr-02 5:37
Joel Matthias12-Apr-02 5:37 
GeneralToo cool! Pin
James T. Johnson11-Apr-02 23:17
James T. Johnson11-Apr-02 23:17 
GeneralRe: Too cool! Pin
16-Apr-02 0:40
suss16-Apr-02 0:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.