Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions Guide/Enum Guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
## System Key
| System.Windows.Input.Key | WindowsInput.Native.VirtualKeyCode |
| ------------------------ | ---------------------------------- |
| `Escape` | `ESCAPE` |
| `F[1-12]` | `F[1-12]` |
| `Scroll` | `PRINT` |
| `Pause` | `PAUSE` |
| `Back` | `BACK` |
| `Tab` | `TAB` |
| `Capital` | `CAPITAL` |
| `Return` | `RETURN` |
| `LeftShift` | `LSHIFT` |
| `RightShift` | `RSHIFT` |
| `LeftCtrl` | `LCONTROL` |
| `RightCtrl` | `RCONTROL` |
| `Space` | `SPACE` |
| `LeftAlt` | `LMENU` |
| `RightAlt` | `RMENU` |
| `Insert` | `INSERT` |
| `Home` | `HOME` |
| `Delete` | `DELETE` |
| `End` | `END` |
| `PageUp` | `PRIOR` |
| `PageDown` | `NEXT` |
| `Up` | `UP` |
| `Down` | `DOWN` |
| `Left` | `LEFT` |
| `Right` | `RIGHT` |


## OEM
| Windows Output | Shift Output | System.Windows.Input.Key | WindowsInput.Native.VirtualKeyCode |
| -------------- | ------------ | ------------------------ | ---------------------------------- |
| \` | ~ | `Oem3` | `OEM_3` |
| - | _ | `OemMinus` | `OEM_MINUS` |
| = | + | `OemPlus` | `OEM_PLUS` |
| [ | { | `OemOpenBrackets` | `OEM_4` |
| ] | } | `Oem6` | `OEM_6` |
| \ | \| | `Oem5` | `OEM_5` |
| ; | : | `Oem1` | `OEM_1` |
| ' | " | `OemQuotes` | `OEM_7` |
| , | < | `OemComma` | `OEM_COMMA` |
| . | > | `OemPeriod` | `OEM_PERIOD` |
| / | ? | `OemQuestion` | `OEM_2` |

## Alphabet & Number
| Windows Output | Shift Output | System.Windows.Input.Key | WindowsInput.Native.VirtualKeyCode |
| -------------- | ------------ | ------------------------ | ---------------------------------- |
| a-z | A-Z | `[A-Z]` | `VK_[A-Z]` |
| 1234567890 | !@#$%^&*() | `D[0-9]` | `VK_[0-9]` |
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ NuGet
------
Install-Package InputSimulator

Guide
-----
[KeyCode Enum Guide](/Guide/Enum%20Guide.md)

Examples
==========

Expand Down