vote up 1 vote down star

I have a Page with a UserControl on it. If the user presses Esc while anywhere on Page I want to handle.

I thought this would be as easy as hooking up the PreviewKeyDown event, testing for the Esc key, and then handling it. However, when I placed I breakpoint in the event handler I found it was never getting called. I thought perhaps the UserControl might be getting hit, so I tried PreviewKeyDown there... same result.

Does anyone know the proper place to test for a KeyDown or PreviewKeyDown on a Page object?

flag

3 Answers

vote up 1 vote down check

I believe that the PreviewKeyDown event is a tunneling routed event, rather than a bubbling one. If that is the case, then if your Page isn't getting the event, the UserControl shouldn't be either since it is below the Page in the visual tree. Maybe try handling it at the top level of your app (Window perhaps?) and see if it is getting the event?

Another option that might help would be to use something like Snoop to figure out where the events are going.

link|flag
vote up 0 vote down

Thanks for the response, Andy.

You are correct-- I am able capture the event in the topmost window (which is a NavigationWindow object). Using the NavigationService.Content property I am able to determine which Page is currently active and then, if its the page I want to respond to the Escape key for, act upon that. Apparently I need to read more about RoutedEvents.

This seems a little tedious compared to WinForms which probably means my whole approach is incorrect. WPF is going to take me a lot of getting used to. :)

Curiously, Snoop cannot seem to find my applications. It could only find Blend when it was open, but not the actual application which I had running. Oh well...

link|flag
vote up 0 vote down

I have/had the same problem. I have a window which hosts a Frame which loads/navigates to various Page's which at their turn contain just 1 UserControl which contains normal Controls/Elements (Labels, Hyperlinks, etc).

what I discovered (after some hours of frustration of course!!!) is that if you do NOT have the focus on one of the Controls/Elements mentioned above the PreviewKeyDown event does NOT fire on the UserControl (stops somewhere at Frame level) but as soon as you put the focus (for instance calling ctrl.Focus() inside the UserCotrol's Loaded event handler) on one of the controls magic happens, it works, the event fires also for the UserControl.

of course thinking of it afterwards this makes enough sense but I am 100% sure this will cacth at least 5 out of 10 people by surprise :) crazy little thing called WPF...

cheers!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.