msicc.net
Xamarin Forms, the MVVMLight Toolkit and I: EventToCommandBehavior
Often, we want to/need to know when views throw certain events. However, due to using the MVVM pattern, our application logic is separated from the view. There are several ways to get those events into our ViewModel while keeping it separated from the views. One way is to implement an interface (like I showed you before), this post shows you how to use a Behavior to achieve this.
Marco Siccardi