Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a global focus change event? I would like to be notified every time FocusManager.GetFocusedElement changes.

share|improve this question

2 Answers

up vote 5 down vote accepted

You can attach GotFocus and LostFocus event handlers on the root visual of your application (a page). Since these events are routed events they will bubble up the elements tree to the root every time focus changes inside your page.

share|improve this answer
Worked like a charm. – Jonathan Allen Mar 24 '11 at 5:52

I don't recall seeing such a feature. In theory you could use the VisualTreeHelper to traverse the GUI and attach to Focus events of your controls.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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