1

使用 ImpromptuInterface.MVVM 绑定到单个事件非常简单:

<DataGrid MVVM:Event.Bind="{Binding Events.RowEditEnding.To[DoRowEditEnding]}"
 ...

如何绑定到同一个 DataGrid 控件中的第二个事件?

4

1 回答 1

0

您始终可以在To语句之后链接另一个事件。这是一个示例,我使用它来绑定来自一个对象的多个鼠标监听事件:

  <Grid Background="{Binding Color}" MVVM:Event.Bind="{Binding Events.MouseEnter.To[CenterMouseEnter].MouseLeave.To[MouseLeave].MouseLeftButtonDown.To[LeftButtonClick]}" 
于 2012-08-13T13:56:52.843 回答