Tagged Questions

-1
votes
2answers
88 views

View model event bind to button click

My Viewmodel has an event public class TestViewModel { public event RoutedEventHandler Run; } I wanna trigger this event when user clicked on a button in view How to bind this with a button ...