using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Hardcodet.Wpf.TaskbarNotification.Interop { /// /// The notify icon version that is used. The higher /// the version, the more capabilities are available. /// public enum NotifyIconVersion { /// /// Default behavior (legacy Win95). /// Win95 = 0x0, /// /// Behavior representing Win2000 an higher. /// Win2000 = 0x3, /// /// Extended tooltip support, which is available /// for Vista and later. /// Vista = 0x4 } }