System\Windows\Forms\SendKeys\SendKeys.cs (49)
24new("ENTER", Keys.Return),
25new("TAB", Keys.Tab),
26new("ESC", Keys.Escape),
27new("ESCAPE", Keys.Escape),
28new("HOME", Keys.Home),
29new("END", Keys.End),
30new("LEFT", Keys.Left),
31new("RIGHT", Keys.Right),
32new("UP", Keys.Up),
33new("DOWN", Keys.Down),
34new("PGUP", Keys.Prior),
35new("PGDN", Keys.Next),
36new("NUMLOCK", Keys.NumLock),
37new("SCROLLLOCK", Keys.Scroll),
38new("PRTSC", Keys.PrintScreen),
39new("BREAK", Keys.Cancel),
40new("BACKSPACE", Keys.Back),
41new("BKSP", Keys.Back),
42new("BS", Keys.Back),
43new("CLEAR", Keys.Clear),
44new("CAPSLOCK", Keys.Capital),
45new("INS", Keys.Insert),
46new("INSERT", Keys.Insert),
47new("DEL", Keys.Delete),
48new("DELETE", Keys.Delete),
49new("HELP", Keys.Help),
50new("F1", Keys.F1),
51new("F2", Keys.F2),
52new("F3", Keys.F3),
53new("F4", Keys.F4),
54new("F5", Keys.F5),
55new("F6", Keys.F6),
56new("F7", Keys.F7),
57new("F8", Keys.F8),
58new("F9", Keys.F9),
59new("F10", Keys.F10),
60new("F11", Keys.F11),
61new("F12", Keys.F12),
62new("F13", Keys.F13),
63new("F14", Keys.F14),
64new("F15", Keys.F15),
65new("F16", Keys.F16),
66new("MULTIPLY", Keys.Multiply),
67new("ADD", Keys.Add),
68new("SUBTRACT", Keys.Subtract),
69new("DIVIDE", Keys.Divide),
70new("+", Keys.Add),
71new("%", (Keys.D5 | Keys.Shift)),
72new("^", (Keys.D6 | Keys.Shift)),