Click here to Skip to main content
15,891,529 members
Articles / General Programming / Threads

Plugged.NET - An event based plug-in library for enterprise application integration and extensibility

Rate me:
Please Sign up or sign in to vote.
4.89/5 (19 votes)
25 Jul 2013CPOL6 min read 34K   1.4K   92  
An event based plug-in library for enterprise application integration, extensibility and cross business application management.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Common.Plugin.SampleHost.Taskbar.Interop
{
  /// <summary>
  /// The notify icon version that is used. The higher
  /// the version, the more capabilities are available.
  /// </summary>
  public enum NotifyIconVersion
  {
    /// <summary>
    /// Default behavior (legacy Win95). Expects
    /// a <see cref="NotifyIconData"/> size of 488.
    /// </summary>
    Win95 = 0x0,
    /// <summary>
    /// Behavior representing Win2000 an higher. Expects
    /// a <see cref="NotifyIconData"/> size of 504.
    /// </summary>
    Win2000 = 0x3,
    /// <summary>
    /// Extended tooltip support, which is available
    /// for Vista and later.
    /// </summary>
    Vista = 0x4
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
is a poor software developer and thinker. Presently working on a theory of "complementary perception". It's a work in progress.

Comments and Discussions