e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
210 lines
6.3 KiB
C#
210 lines
6.3 KiB
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*=============================================================================
|
|
**
|
|
** Class: ConsoleKey
|
|
**
|
|
**
|
|
** Purpose: This enumeration represents characters returned from a keyboard.
|
|
** The list is derived from a list of Windows virtual key codes,
|
|
** and is very similar to the Windows Forms Keys class.
|
|
**
|
|
**
|
|
=============================================================================*/
|
|
|
|
namespace System {
|
|
|
|
[Serializable]
|
|
public enum ConsoleKey
|
|
{
|
|
Backspace = 0x8,
|
|
Tab = 0x9,
|
|
// 0xA, // Reserved
|
|
// 0xB, // Reserved
|
|
Clear = 0xC,
|
|
Enter = 0xD,
|
|
// 0E-0F, // Undefined
|
|
// SHIFT = 0x10,
|
|
// CONTROL = 0x11,
|
|
// Alt = 0x12,
|
|
Pause = 0x13,
|
|
// CAPSLOCK = 0x14,
|
|
// Kana = 0x15, // Ime Mode
|
|
// Hangul = 0x15, // Ime Mode
|
|
// 0x16, // Undefined
|
|
// Junja = 0x17, // Ime Mode
|
|
// Final = 0x18, // Ime Mode
|
|
// Hanja = 0x19, // Ime Mode
|
|
// Kanji = 0x19, // Ime Mode
|
|
// 0x1A, // Undefined
|
|
Escape = 0x1B,
|
|
// Convert = 0x1C, // Ime Mode
|
|
// NonConvert = 0x1D, // Ime Mode
|
|
// Accept = 0x1E, // Ime Mode
|
|
// ModeChange = 0x1F, // Ime Mode
|
|
Spacebar = 0x20,
|
|
PageUp = 0x21,
|
|
PageDown = 0x22,
|
|
End = 0x23,
|
|
Home = 0x24,
|
|
LeftArrow = 0x25,
|
|
UpArrow = 0x26,
|
|
RightArrow = 0x27,
|
|
DownArrow = 0x28,
|
|
Select = 0x29,
|
|
Print = 0x2A,
|
|
Execute = 0x2B,
|
|
PrintScreen = 0x2C,
|
|
Insert = 0x2D,
|
|
Delete = 0x2E,
|
|
Help = 0x2F,
|
|
D0 = 0x30, // 0 through 9
|
|
D1 = 0x31,
|
|
D2 = 0x32,
|
|
D3 = 0x33,
|
|
D4 = 0x34,
|
|
D5 = 0x35,
|
|
D6 = 0x36,
|
|
D7 = 0x37,
|
|
D8 = 0x38,
|
|
D9 = 0x39,
|
|
// 3A-40 , // Undefined
|
|
A = 0x41,
|
|
B = 0x42,
|
|
C = 0x43,
|
|
D = 0x44,
|
|
E = 0x45,
|
|
F = 0x46,
|
|
G = 0x47,
|
|
H = 0x48,
|
|
I = 0x49,
|
|
J = 0x4A,
|
|
K = 0x4B,
|
|
L = 0x4C,
|
|
M = 0x4D,
|
|
N = 0x4E,
|
|
O = 0x4F,
|
|
P = 0x50,
|
|
Q = 0x51,
|
|
R = 0x52,
|
|
S = 0x53,
|
|
T = 0x54,
|
|
U = 0x55,
|
|
V = 0x56,
|
|
W = 0x57,
|
|
X = 0x58,
|
|
Y = 0x59,
|
|
Z = 0x5A,
|
|
LeftWindows = 0x5B, // Microsoft Natural keyboard
|
|
RightWindows = 0x5C, // Microsoft Natural keyboard
|
|
Applications = 0x5D, // Microsoft Natural keyboard
|
|
// 5E , // Reserved
|
|
Sleep = 0x5F, // Computer Sleep Key
|
|
NumPad0 = 0x60,
|
|
NumPad1 = 0x61,
|
|
NumPad2 = 0x62,
|
|
NumPad3 = 0x63,
|
|
NumPad4 = 0x64,
|
|
NumPad5 = 0x65,
|
|
NumPad6 = 0x66,
|
|
NumPad7 = 0x67,
|
|
NumPad8 = 0x68,
|
|
NumPad9 = 0x69,
|
|
Multiply = 0x6A,
|
|
Add = 0x6B,
|
|
Separator = 0x6C,
|
|
Subtract = 0x6D,
|
|
Decimal = 0x6E,
|
|
Divide = 0x6F,
|
|
F1 = 0x70,
|
|
F2 = 0x71,
|
|
F3 = 0x72,
|
|
F4 = 0x73,
|
|
F5 = 0x74,
|
|
F6 = 0x75,
|
|
F7 = 0x76,
|
|
F8 = 0x77,
|
|
F9 = 0x78,
|
|
F10 = 0x79,
|
|
F11 = 0x7A,
|
|
F12 = 0x7B,
|
|
F13 = 0x7C,
|
|
F14 = 0x7D,
|
|
F15 = 0x7E,
|
|
F16 = 0x7F,
|
|
F17 = 0x80,
|
|
F18 = 0x81,
|
|
F19 = 0x82,
|
|
F20 = 0x83,
|
|
F21 = 0x84,
|
|
F22 = 0x85,
|
|
F23 = 0x86,
|
|
F24 = 0x87,
|
|
// 88-8F, // Undefined
|
|
// NumberLock = 0x90,
|
|
// ScrollLock = 0x91,
|
|
// 0x92, // OEM Specific
|
|
// 97-9F , // Undefined
|
|
// LeftShift = 0xA0,
|
|
// RightShift = 0xA1,
|
|
// LeftControl = 0xA2,
|
|
// RightControl = 0xA3,
|
|
// LeftAlt = 0xA4,
|
|
// RightAlt = 0xA5,
|
|
BrowserBack = 0xA6, // Windows 2000/XP
|
|
BrowserForward = 0xA7, // Windows 2000/XP
|
|
BrowserRefresh = 0xA8, // Windows 2000/XP
|
|
BrowserStop = 0xA9, // Windows 2000/XP
|
|
BrowserSearch = 0xAA, // Windows 2000/XP
|
|
BrowserFavorites = 0xAB, // Windows 2000/XP
|
|
BrowserHome = 0xAC, // Windows 2000/XP
|
|
VolumeMute = 0xAD, // Windows 2000/XP
|
|
VolumeDown = 0xAE, // Windows 2000/XP
|
|
VolumeUp = 0xAF, // Windows 2000/XP
|
|
MediaNext = 0xB0, // Windows 2000/XP
|
|
MediaPrevious = 0xB1, // Windows 2000/XP
|
|
MediaStop = 0xB2, // Windows 2000/XP
|
|
MediaPlay = 0xB3, // Windows 2000/XP
|
|
LaunchMail = 0xB4, // Windows 2000/XP
|
|
LaunchMediaSelect = 0xB5, // Windows 2000/XP
|
|
LaunchApp1 = 0xB6, // Windows 2000/XP
|
|
LaunchApp2 = 0xB7, // Windows 2000/XP
|
|
// B8-B9, // Reserved
|
|
Oem1 = 0xBA, // Misc characters, varies by keyboard. For US standard, ;:
|
|
OemPlus = 0xBB, // Misc characters, varies by keyboard. For US standard, +
|
|
OemComma = 0xBC, // Misc characters, varies by keyboard. For US standard, ,
|
|
OemMinus = 0xBD, // Misc characters, varies by keyboard. For US standard, -
|
|
OemPeriod = 0xBE, // Misc characters, varies by keyboard. For US standard, .
|
|
Oem2 = 0xBF, // Misc characters, varies by keyboard. For US standard, /?
|
|
Oem3 = 0xC0, // Misc characters, varies by keyboard. For US standard, `~
|
|
// 0xC1, // Reserved
|
|
// D8-DA, // Unassigned
|
|
Oem4 = 0xDB, // Misc characters, varies by keyboard. For US standard, [{
|
|
Oem5 = 0xDC, // Misc characters, varies by keyboard. For US standard, \|
|
|
Oem6 = 0xDD, // Misc characters, varies by keyboard. For US standard, ]}
|
|
Oem7 = 0xDE, // Misc characters, varies by keyboard. For US standard,
|
|
Oem8 = 0xDF, // Used for miscellaneous characters; it can vary by keyboard
|
|
// 0xE0, // Reserved
|
|
// 0xE1, // OEM specific
|
|
Oem102 = 0xE2, // Win2K/XP: Either angle or backslash on RT 102-key keyboard
|
|
// 0xE3, // OEM specific
|
|
Process = 0xE5, // Windows: IME Process Key
|
|
// 0xE6, // OEM specific
|
|
Packet = 0xE7, // Win2K/XP: Used to pass Unicode chars as if keystrokes
|
|
// 0xE8, // Unassigned
|
|
// 0xE9, // OEM specific
|
|
Attention = 0xF6,
|
|
CrSel = 0xF7,
|
|
ExSel = 0xF8,
|
|
EraseEndOfFile = 0xF9,
|
|
Play = 0xFA,
|
|
Zoom = 0xFB,
|
|
NoName = 0xFC, // Reserved
|
|
Pa1 = 0xFD,
|
|
OemClear = 0xFE,
|
|
}
|
|
}
|