Skip to content

Instantly share code, notes, and snippets.

@korchoon
Created June 26, 2020 17:38
Show Gist options
  • Save korchoon/7dd0ac3882a9edd4eca8f01bf7104490 to your computer and use it in GitHub Desktop.
Save korchoon/7dd0ac3882a9edd4eca8f01bf7104490 to your computer and use it in GitHub Desktop.
[DllImport("USER32.dll")]
public static extern short GetKeyState(int keycode);
var capsLocked = (GetKeyState(0x14) & 1) > 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment