Click here to Skip to main content
15,896,444 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
example on routed event and type of routed.situation to use the routed event in wpf
Posted

Routed events in WPF are basically of three types.

Direct events are standard events for e.g. a button raises a click.

Bubbling events are raised by a source control and then moved up the visual tree till it is handled by another control e.g. a click on a button inside a cell could traverse upto grid level.

Tunneling events work reverse and are raised at the control at root level and travel down the visual tree till they hit the source element.

You don't really need a situation to use these events. They are happening all the time when you use WPF.
 
Share this answer
 
v2
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900