I have this app where I can insert images and move them around.
What I want is to be able to resize them when some Grid is in focus on Up/Down arrow on keyboard.
I have tried with adding this function into KeyDown but it does not work
UIElement_OnKeyDown(object sender, KeyRoutedEventArgs e)
After this I saw some Idea on net and tried with
Window.Current.CoreWindow.KeyDown += UIElement_OnDownKey;
But I don't know how can I get through this function focused element and resize it...
Thanks!
