WPF EventRouting to Children
- by Shaun Bowe
Is there any way to broadcast a RoutedEvent to all of my children in WPF?
For example lets say I have a Window that has 4 children. 2 of them know about the RoutedEvent 'DisplayYourself' and are listening for it. How can I raise this event from the window and have it sent to all children?
I looked at RoutingStrategy and Bubble is the wrong…