I have UserControls within UserControls in WPF. This makes a tree structure starting from the root node.
I want to register for the event MouseLeftClickDown in all the UserControls. Left Clicking on a child control causes the event to fire for that control and all the parent controls that contain that child.
When I click a child, I don't want to fire the event for any parent controls, I just want it to fire for the child control clicked.