Shell_NotifyIcon (coredll)
Last changed: anonymous

.
Summary
This function sends a message to the system to add, modify, or delete an application-specific icon from the taskbar status area. It does not affect icons appearing on the home screen.

C# Signature:

[DllImport("coredll.dll")]
static extern uint Shell_NotifyIcon(uint message, ref NOTIFYICONDATA data);

User-Defined Types:

[message]

    uint NIM_ADD = 0x00;
    uint NIM_MODIFY = 0x01;
    uint NIM_DELETE = 0x02;

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Refer to the NOTIFYICONDATA Sample Code section.

Documentation