Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a game for Windows Store, using C# and XAML. All my game objects have a canvas, which describe their view. These canvases will be displayed in a canvas (gameRoot).

I want to move my player based on the key he pressed (eg W is go up). Here is my display page:

<Page
x:Class="Labyrinth_XAML.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Labyrinth_XAML"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Canvas x:Name="gameRoot"  KeyDown="gameRoot_KeyDown_1">
    <Button>Vakanu</Button>
</Canvas>


</Page>

I've created a breakpoint in my eventhandler, and KeyDown event never fires. After some google, I figured out, if I create a Button into my Canvas event will fire. But if I remove, event will not fire. If I click anywhere out of the button, event will never fire again.

My question is: how can I create a keyboard event handler, which fires every time when I press a key within a page, not depending which element has the focus?

share|improve this question

2 Answers

You can subscribe to the Window.Current.CoreWindow.KeyDown/Up events.

share|improve this answer
1  
+1. Yes, catching key events globally, instead of bound to a particular control, is more appropriate for games. Note, however, that the event handling in WPF and WinForms allows you to catch only one key or mouse event at once. Game interfaces like Direct X allow you to press (and catch) several keyboard and mouse keys simultaneously. – Olivier Jacot-Descombes Oct 1 '12 at 19:33

Fought with a similar problem a little while ago. You must set your Canvas's "Focusable" property to true. To give your canvas focus, you will need to call the Canvas's Focus() function.

See MSDN Focus Overview really helped me get my head around it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.