3

这个有用的课程似乎从最新的 MVVM Light 版本中消失了,知道为什么或如何解决它吗?

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

环境:VS2013,WP8.0

4

1 回答 1

10

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

 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>
于 2014-10-20T09:11:59.063 回答