如何使用Command for SelectionChanged的Pivot控件

时间:2013-09-22 12:52:17

标签: windows-phone-8 mvvm-light

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

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

但是,如何使用Command for SelectionChanged Pivot控件? 我不想在xaml页面的.cs文件后面的代码中的SelectionChanged事件中编写代码。

1 个答案:

答案 0 :(得分:0)

<i:Interaction.Triggers>
  <i:EventTrigger EventName="SelectionChanged">
    <i:InvokeCommandAction Command="{Binding SampleCommand}"/>
  </i:EventTrigger>
</i:Interaction.Triggers>