mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
53 lines
1.8 KiB
C#
53 lines
1.8 KiB
C#
namespace Fischless.KeyboardCapture;
|
|
|
|
public static class KeyboardConst
|
|
{
|
|
public const string Ctrl = nameof(Ctrl);
|
|
public const string LCtrl = nameof(LCtrl);
|
|
public const string RCtrl = nameof(RCtrl);
|
|
|
|
public const string Shift = nameof(Shift);
|
|
public const string Lhift = nameof(Lhift);
|
|
public const string RShift = nameof(RShift);
|
|
|
|
public const string Alt = nameof(Alt);
|
|
public const string LAlt = nameof(LAlt);
|
|
public const string RAlt = nameof(RAlt);
|
|
|
|
public const string Win = nameof(Win);
|
|
public const string LWin = nameof(LWin);
|
|
public const string RWin = nameof(RWin);
|
|
|
|
public const string Esc = nameof(Esc);
|
|
public const string Del = nameof(Del);
|
|
public const string Enter = nameof(Enter);
|
|
public const string NumEnter = nameof(NumEnter);
|
|
|
|
public const string Num = nameof(Num);
|
|
public const string NumpadDot = nameof(Num) + ".";
|
|
public const string NumpadSlash = nameof(Num) + "/";
|
|
public const string NumpadAsterisk = nameof(Num) + "*";
|
|
public const string NumpadMinus = nameof(Num) + "-";
|
|
public const string NumpadPlus = nameof(Num) + "+";
|
|
|
|
public const string Equal = "=";
|
|
public const string Apostrophe = "'";
|
|
public const string Comma = ",";
|
|
public const string Minus = "-";
|
|
public const string Period = ".";
|
|
public const string Question = "?";
|
|
public const string Pipe = "|";
|
|
public const string Slash = "/";
|
|
public const string Semicolon = ";";
|
|
public const string LeftSquareBracket = "[";
|
|
public const string Backslash = @"\";
|
|
public const string RightSquareBracket = "]";
|
|
public const string Tilde = "`";
|
|
|
|
public const string PgUp = nameof(PgUp);
|
|
public const string PgDn = nameof(PgDn);
|
|
|
|
public const string CapsLock = nameof(CapsLock);
|
|
public const string ScrollLock = nameof(ScrollLock);
|
|
}
|