MVVMLight 和 Windows 10

MVVMLight and Windows 10

即将在通用 Windows 10 应用程序中尝试 MVVM。为了提供帮助,我一直在使用 MVVMLight 工具包,它在代码中运行良好。但是,我想尝试 XAML 中的 EventToCommand 将列表视图上的 ItemClick 路由到命令,但似乎无法在命名空间中引用正确的库。

我试过 xmlns:MvvmLight="using:GalaSoft.MvvmLight" 但这似乎没有给我任何 EventToCommand 智能感知。 Windows 10 个通用应用程序支持此功能吗?如果是这样,我如何在 XAML 中使用它?

我相信这段话:

Like mentioned above, there is no EventToCommand in the Windows 8.1 version of MVVM Light, and there will never be. This is because the Blend team listened to my feedback and added the same capability to their own InvokeCommandAction.

来自 Using the EventArgsConverter in MVVM Light, and why is there no EventToCommand in the Windows 8.1 version? 回答了您的问题并提供了前进的方向...

另请查看此博客 post Building a Universal Application for Windows Phone 8.1 and Windows 8.1 with MVVM Light,其中 Laurent Bugnion 在回答有关为什么没有 EventToCommand 的问题时指向同一个第一个博客 post通用 MVVM Light。