mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
25 lines
458 B
C#
25 lines
458 B
C#
namespace Wox.Infrastructure.Hotkey
|
|
{
|
|
public enum KeyEvent
|
|
{
|
|
/// <summary>
|
|
/// Key down
|
|
/// </summary>
|
|
WM_KEYDOWN = 256,
|
|
|
|
/// <summary>
|
|
/// Key up
|
|
/// </summary>
|
|
WM_KEYUP = 257,
|
|
|
|
/// <summary>
|
|
/// System key up
|
|
/// </summary>
|
|
WM_SYSKEYUP = 261,
|
|
|
|
/// <summary>
|
|
/// System key down
|
|
/// </summary>
|
|
WM_SYSKEYDOWN = 260
|
|
}
|
|
} |