XNA Keys number 1

Viewed 3763

I need to ask when the number 1 key is pressed, NOT on the Numpad, but the number 1 that is over the Q (trying to make this as clear as possible).

I've been through all the available keys on the Keys array, but no one matches the one that I am looking for.

Is there a way to do this that I'm missing?

My code:

If (currentKeyboardState.IsKeyDown(Keys.1))
2 Answers
Related