这个有用的类似乎已从最新的MVVM Light版本中删除,您知道为什么或如何解决吗?

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

环境:VS2013,WP8.0

最佳答案

最终,我在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>

08-26 14:33