Tagged Questions
2
votes
7answers
1k views
-1
votes
2answers
68 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 ...