I was navigating through the code I found inside the default project templates that are available for Windows Style apps. They already contain a lot of plumbing, specially around navigating through pages.
While reading the LayoutAwarePage.cs I found some code that handles keystrokes. I even found out something I did not know.
- Navigate backward in an app using Alt+Left
- Navigate forward in an app using Alt+Right
But strangely, I'm using to navigate backward using the Backspace key, this was not in the default LayoutAwarePage.cs code. But when you for example use the Store app navigating backward using the Backspace key will work. So let's improve the default LayoutAwarePage to support the Backspace key as well. Just add the highlighted code to the CodeDispatcher_AcceleratorKeyActived method inside the Layo ...
Go to the complete details ...