我将我的WinPhone8.1项目迁移到UWP,我发现xaml中的行为有些不兼容。我似乎需要安装 Microsoft.Xaml.Behaviors.Uwp.Managed 和 Microsoft.Xaml.Behaviors.Uwp.Native 。但是,在安装之后,我得到了如下编译错误:具有相同简单名称的程序集' Microsoft.Xaml.Interactivity'已经进口了。尝试删除其中一个引用 ...我认为xaml.interactivity是由框架提供的,我无法在解决方案资源管理器的参考资料中看到它。我想知道是否有人能对此有所了解。这是不包括我自己的dlls的引用的截图。
代码段
<interactivity:Interaction.Behaviors>
<core:EventTriggerBehavior
EventName="ItemClick">
<core:InvokeCommandAction
Command="{Binding ViewSomeCommand}"
InputConverter="{StaticResource ItemClickedToSomeConverter}" />
</core:EventTriggerBehavior>
</interactivity:Interaction.Behaviors>