How to use Interaction Triggers to handle user-initiated events in WPF / MVVM
Example scenario: User clicks the mouse in a WPF application – how do we ‘listen’ to that event in order to trigger and handle an event in the main code? A possible solution is to use in WPF MVVM. See this post to learn how to do this using MvvmLight: https://www.technical-recipes.com/2017/handling-mouse-events-in-wpf-mvvm-using-mvvmlight-event-triggers/ Here is an example …
Continue reading ‘How to use Interaction Triggers to handle user-initiated events in WPF / MVVM’ »