InterviewSolution
Saved Bookmarks
| 1. |
What is a Routed event in WPF |
|
Answer» When we talk about a TYPICAL WPF APPLICATION which contains many ELEMENTS. These elements exist in an ELEMENT tree relationship with each other. A routed event is a type of event that can invoke handlers on multiple listeners in an element tree, rather than just on the OBJECT that raised the event. |
|