I am trying to capture any keystroke that happens inside my Silverlight 2 application. There are not any input fields, I'm writing a game, and need to know which of the arrow keys are being pressed. My best guesses at how to capture these through an event handler are unsuccessful. Any recommendations?
|
|
Hey Jeff: Good to see you again (virtually). I'm assuming you already tried wiring KeyDown on the root UserControl element. Here are some tips:
Must be something simple you are missing like that. Hope that helps. |
||||||||||
|
|
|
This tutorial from kirupa.com explains everything you need to know: This works in WPF, but I am only assuming it's the same with Silverlight. |
||
|
|
|
|
Handle the KeyDown and/or the KeyUp event on your root Grid. |
||
|
|
|
|
Silverlight 2 supports the KeyUp and KeyDown events (only, I believe - not KeyPress). In these events, you get a KeyEventArgs object as a parameter. You can get the KeyCode or KeyData from this. |
||
|
|
|
|
Have you had a look at the Blue Rose games tutorials? Link |
||
|
|
|
|
In reviewing a few different threads from different forums regarding this matter it would seem it is best to handle your keyevents on your Page (root) element, parse the key for the desired effect, and redirect your command to the particular control. Page
MyControl
|
|||
|
|
