Binding to a single event with ImpromptuInterface.MVVM is very simple:
<DataGrid MVVM:Event.Bind="{Binding Events.RowEditEnding.To[DoRowEditEnding]}"
...
How do I bind to a second event in the same DataGrid control?
Binding to a single event with ImpromptuInterface.MVVM is very simple:
<DataGrid MVVM:Event.Bind="{Binding Events.RowEditEnding.To[DoRowEditEnding]}"
...
How do I bind to a second event in the same DataGrid control?
Copyright © 2021 Jogjafile Inc.
You can always chain another event after the
Tostatement. Here is an example where I've used it to bind multiple mouse listening events from one object: