What is routed event in WPF?
Ask by Anonymous User
Updated 17 Sep 2020
Functional definition: A routed event is a type of eventthat can invoke handlers on multiple listeners in an element tree, rather thanjust on the object that raised the event.
Implementationdefinition: A routed event is a CLR event that is backed by an instance of the RoutedEvent class and is processed by the Windows Presentation Foundation (WPF) eventsystem.