namespace Hardcodet.Wpf.TaskbarNotification { /// /// Defines flags that define when a popup /// is being displyed. /// public enum PopupActivationMode { /// /// The item is displayed if the user clicks the /// tray icon with the left mouse button. /// LeftClick, /// /// The item is displayed if the user clicks the /// tray icon with the right mouse button. /// RightClick, /// /// The item is displayed if the user double-clicks the /// tray icon. /// DoubleClick, /// /// The item is displayed if the user clicks the /// tray icon with the left or the right mouse button. /// LeftOrRightClick, /// /// The item is displayed if the user clicks the /// tray icon with the left mouse button or if a /// double-click is being performed. /// LeftOrDoubleClick, /// /// The item is displayed if the user clicks the /// tray icon with the middle mouse button. /// MiddleClick, /// /// The item is displayed whenever a click occurs. /// All } }