문제

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?

도움이 되었습니까?

해결책

You can always chain another event after the To statement. Here is an example where I've used it to bind multiple mouse listening events from one object:

  <Grid Background="{Binding Color}" MVVM:Event.Bind="{Binding Events.MouseEnter.To[CenterMouseEnter].MouseLeave.To[MouseLeave].MouseLeftButtonDown.To[LeftButtonClick]}" 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top