views:

21

answers:

0

WPF defines most routed events in pairs, we have both Bubbling and tunneling events. I have seen people using Preview(tunneling) events for performing the operations instead of using the bubbling ones. As per my understanding preview events should only be used to perform some checks and/or handle the event if required.

Is it a good practice to use Preview events? What all problems(if any) can arise due to this practice in large scale applications?