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 in a view ?
|
My Viewmodel has an event
I wanna trigger this event when user clicked on a button in view How to bind this with a button in a view ?
| ||||
|
feedback
|
|
Routed events are meant for controls not view models, if you have something that should be executed upon a button click a command would be more suitable in my opinion, it can easily be bound to the | |||
|
feedback
|
|
I think, you should use DelegateCommand for such behavior. In your View Model:
On your page:
| |||
|
feedback
|