MVVM Light:在 XAML 中添加 EventToCommand 而无需 Blend,更简单的方法或片段?
谁能告诉我 EventToCommand 类的实际语法是什么。我认为 EventToCommand
类适用于 Silverlight / WPF 和 WP7,因此我认为它是更好的选择。
据我所知,我可以添加任何点击事件并将其强制到我的 ViewModel
中,但我在寻找最佳方法时遇到了问题。
我知道您可以在不使用 Blend 的情况下添加它,但是有可用的片段吗?
或者有没有更简单的方法通过 VS 2010 添加它?任何帮助或者如果有人知道这方面的好教程都会很棒。
Can anyone tell me what the actual syntax is for EventToCommand
class. From what I believe is that EventToCommand
class works with Silverlight / WPF and WP7, hence I think its a better choice to go down.
From what I believe, I can add any click event and get it forced into my ViewModel
, but I am having an issue in finding the best way to do this.
I know you can add it without Blend, but are there snippets available?
Or is there an easier way to add it via VS 2010? Any help or if anyone knows of a good tutorial on this would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您使用
.NetFramework4
:首先添加
命名空间
:Loaded 事件的语法。
Suppose you use
.NetFramework4
:First add
namespace
:Syntax for the Loaded event.
我更新了我的项目,看起来他们将命令移至:
I updated my project and it looks like they moved the command to:
0) 如果您不了解 WPF 和 MVVM,请阅读 Josh Smith 关于 WPF 和 MVVM 模式的文章 https://msdn.microsoft.com/en-us/magazine/dd419663.aspx
1) 在您的项目中添加包(通过 NuGet)MvvmLightLibs
2) 添加对 System.Windows.Interactivity 的引用
3)在“View”XAML 中添加:
a)
b)
4) 在 ViewModel 中添加必要的
属性在您的视图中应该指定 DataContext (XAML)
这是工作。我自己也是刚刚学会的。
0) if you dont't know WPF and MVVM, then read Josh Smith article about WPF and MVVM pattern https://msdn.microsoft.com/en-us/magazine/dd419663.aspx
1) In your project add package (through NuGet) MvvmLightLibs
2) add reference to System.Windows.Interactivity
3) In "View" XAML add:
a)
b)
4) In ViewModel add necessary property
P.S. In your View should be specified DataContext (XAML)
It is work. I myself just learned.