如何使用ImpromptuInterface.MVVM创建多个事件绑定



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

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

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

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

  <Grid Background="{Binding Color}" MVVM:Event.Bind="{Binding Events.MouseEnter.To[CenterMouseEnter].MouseLeave.To[MouseLeave].MouseLeftButtonDown.To[LeftButtonClick]}" 

相关内容

  • 没有找到相关文章

最新更新