I define this in the page1 in the ‘OnNavigatedTo’ method
page1.keyEventHandler += (s, k) =>
{
if( k.Key == Key.P )
{
// Do Something ...
}
}
But i need to know if the user pressed on two keys together … i need to know if the user
pressed on the Key.Ctrl+Key.P
How can i do it ?
Thanks
Here you go: