I am working on a WPF application and following MVVM. I have 5 user controls. In one of my user control I need to handle a window message WMCOPY. How should I do that.
Can WPF User control handle windows messages events in its view model? If yes then how? And if no then how to do this?
And what is the proper way of doing this through MainWindow. How to propagate message to appropriate view model.