Is there a way for a parent MenuItem to be notified when a child MenuItem is pressed. For example, I you have
<MenuItem Name='a'>
<MenuItem Name='b' Header='...'/>
</MenuItem>
how can I add an event handler to a to be notified when b is clicked. Ideally, the Click event would be either a tunnel or bubble event but this is not the case. The solution I have in mind is to listen to the Click event on b and forward it to a but this seems pretty heavy handed. Is there a better solution?