mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-24 09:45:41 -05:00
WPF NotifyIcon
-------------- Initial import git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@52 9f600761-6f11-4665-b6dc-0185e9171623
This commit is contained in:
46
Source/NotifyIconWpf/Interop/MouseEvent.cs
Normal file
46
Source/NotifyIconWpf/Interop/MouseEvent.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
namespace Hardcodet.Wpf.TaskbarNotification.Interop
|
||||
{
|
||||
/// <summary>
|
||||
/// Event flags for clicked events.
|
||||
/// </summary>
|
||||
public enum MouseEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// The mouse was moved withing the
|
||||
/// taskbar icon's area.
|
||||
/// </summary>
|
||||
MouseMove,
|
||||
/// <summary>
|
||||
/// The right mouse button was clicked.
|
||||
/// </summary>
|
||||
IconRightMouseDown,
|
||||
/// <summary>
|
||||
/// The left mouse button was clicked.
|
||||
/// </summary>
|
||||
IconLeftMouseDown,
|
||||
/// <summary>
|
||||
/// The right mouse button was released.
|
||||
/// </summary>
|
||||
IconRightMouseUp,
|
||||
/// <summary>
|
||||
/// The left mouse button was released.
|
||||
/// </summary>
|
||||
IconLeftMouseUp,
|
||||
/// <summary>
|
||||
/// The middle mouse button was clicked.
|
||||
/// </summary>
|
||||
IconMiddleMouseDown,
|
||||
/// <summary>
|
||||
/// The middle mouse button was released.
|
||||
/// </summary>
|
||||
IconMiddleMouseUp,
|
||||
/// <summary>
|
||||
/// The taskbar icon was double clicked.
|
||||
/// </summary>
|
||||
IconDoubleClick,
|
||||
/// <summary>
|
||||
/// The balloon tip was clicked.
|
||||
/// </summary>
|
||||
BalloonToolTipClicked
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user