0

我正在使用最新版本的 MVVMLight 来开发 WP 应用程序。我知道如何使用命令而不是在按钮单击事件中编写代码。

<Button Content='Push me' Command='{Binding DisplayMessageCommand}' />

但是,我如何使用SelectionChangedPivot 控件的命令?我不想在SelectionChangedxaml 页面的 .cs 文件后面的代码中编写事件代码。

4

1 回答 1

0
<i:Interaction.Triggers>
  <i:EventTrigger EventName="SelectionChanged">
    <i:InvokeCommandAction Command="{Binding SampleCommand}"/>
  </i:EventTrigger>
</i:Interaction.Triggers>
于 2013-09-22T17:46:59.263 回答