i have designed a .xamlx file that is only meant as an overview. If any key is pressed, my NavigateBackCommand should be executed. Is there an event on a page/grid like "anyKeyPressed"? I must be in the .xamlx, because I can´t (am not allowed to) change something in the backend.
Something like:
<Grid.Behaviors>
<behaviors:EventHandlerBehavior EventName="anyKeyPressed">
<behaviors:InvokeCommandAction Command="{Binding NavigateBackCommand}" />
</behaviors:EventHandlerBehavior>
</Grid.Behaviors>
Unfortunately, no. And for mobile platform (Android/iOS), there's no such event as "anyKeyPressed" especially for physical keyboard.
If not considered frontend only, you can achieve it on UWP:
If any key is pressed, you can return previous page.