#587 – The Purpose of Tunneling and Bubbling Events
June 25, 2012 Leave a comment
Many predefined routed events in WPF are available as pairs of events–one tunneling and one bubbling. The tunneling event typically fires first. E.g. PreviewKeyDown and KeyDown.
Tunneling events are useful if you want to do some filtering out of different events, for example filtering out disallowed keystrokes. This might be useful to do in a higher-level parent control, so lower level controls like buttons don’t have to all deal with the invalid input.