Statistics
| Branch: | Revision:

root / trunk / NotifyIconWpf / Interop / MouseEvent.cs @ 9bae55d1

History | View | Annotate | Download (1.1 kB)

1

2

    
3
namespace Hardcodet.Wpf.TaskbarNotification.Interop
4
{
5
  /// <summary>
6
  /// Event flags for clicked events.
7
  /// </summary>
8
  public enum MouseEvent
9
  {
10
    /// <summary>
11
    /// The mouse was moved withing the
12
    /// taskbar icon's area.
13
    /// </summary>
14
    MouseMove,
15
    /// <summary>
16
    /// The right mouse button was clicked.
17
    /// </summary>
18
    IconRightMouseDown,
19
    /// <summary>
20
    /// The left mouse button was clicked.
21
    /// </summary>
22
    IconLeftMouseDown,
23
    /// <summary>
24
    /// The right mouse button was released.
25
    /// </summary>
26
    IconRightMouseUp,
27
    /// <summary>
28
    /// The left mouse button was released.
29
    /// </summary>
30
    IconLeftMouseUp,
31
    /// <summary>
32
    /// The middle mouse button was clicked.
33
    /// </summary>
34
    IconMiddleMouseDown,
35
    /// <summary>
36
    /// The middle mouse button was released.
37
    /// </summary>
38
    IconMiddleMouseUp,
39
    /// <summary>
40
    /// The taskbar icon was double clicked.
41
    /// </summary>
42
    IconDoubleClick,
43
    /// <summary>
44
    /// The balloon tip was clicked.
45
    /// </summary>
46
    BalloonToolTipClicked
47
  }
48
}