MVVM Light上缺少EventToCommand

时间:2014-10-17 08:55:42

标签: xaml windows-phone-8 mvvm mvvm-light eventtocommand

这个有用的课程似乎已经从最新的MVVM Light版本中消失了,任何想法为什么或如何解决它?

我使用MvvmLightLibs.5.0.1.0,肯定是在MvvmLightLibs.4.1.27.0上。所以这个问题与EventToCommand Missing For Windows Phone App

无关

环境:VS2013,WP8.0

1 个答案:

答案 0 :(得分:8)

最终,我在Galasoft.MvvmLight.Platform上找到了EventToCommand课程。我想组装更改是一个多平台框架。

 xmlns:Command="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Platform"

 <i:Interaction.Triggers>
        <i:EventTrigger EventName="Tap" >                
            <Command:EventToCommand  Command="{Binding Path=MyVM.MyCommand, Source={StaticResource Locator}}" 
                                     PassEventArgsToCommand="False"    
                                     CommandParameter="{Binding}"/>
        </i:EventTrigger>
    </i:Interaction.Triggers>