WPF bubbling a command from a child view
If you are writing a WPF application using re-usable views, you will at some point want to bubble an event or command up from the child view to its parent view. Luckily it is quite straight-forward to to with a RoutedEvent. In our example, we will have the following components: MainWindow This is our parent […]