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?