MVVM Light:在XAML中添加EventToCommand而不使用Blend,更简单的方法还是片段?

时间:2011-05-03 11:12:44

标签: mvvm mvvm-light eventtocommand

任何人都可以告诉我EventToCommand类的实际语法是什么。据我所知,EventToCommand类适用于Silverlight / WPF和WP7,因此我认为它是一个更好的选择。

据我所知,我可以添加任何点击事件并强行进入我的ViewModel,但我在寻找最佳方法时遇到问题。

我知道您可以在没有Blend的情况下添加它,但是有可用的片段吗?

或者是否有更简单的方法通过VS 2010添加它?任何帮助或者如果有人知道关于这方面的好教程都会很棒。

4 个答案:

答案 0 :(得分:71)

假设您使用.NetFramework4

首先添加namespace

xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Platform"

Loaded事件的语法。

<i:Interaction.Triggers>
    <i:EventTrigger EventName="Loaded">
        <cmd:EventToCommand Command="{Binding Mode=OneWay, Path=LoadedCommand}"
                            PassEventArgsToCommand="True" />
    </i:EventTrigger>
</i:Interaction.Triggers>

答案 1 :(得分:8)

这是一篇关于来自MVVMLight创建者的all you need to know about EventToCommand的帖子;)

答案 2 :(得分:3)

我更新了我的项目,看起来他们将命令移动到:

xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Platform"

答案 3 :(得分:3)

0)如果你不了解WPF和MVVM,那么请阅读Josh Smith关于WPF和MVVM模式的文章https://msdn.microsoft.com/en-us/magazine/dd419663.aspx

1)在你的项目中添加包(通过NuGet)MvvmLightLibs

2)添加对System.Windows.Interactivity的引用

3)在&#34; View&#34; XAML添加:

a)

xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:command="http://www.galasoft.ch/mvvmlight"

b)

<i:Interaction.Triggers>
    <i:EventTrigger EventName="Closing">
      <command:EventToCommand Command="{Binding OnClosingCommand}"/>
    </i:EventTrigger>
  </i:Interaction.Triggers>
</Window>

4)在ViewModel中添加必要的属性

public ICommand OnClosingCommand
{
  get
  {
    return new RelayCommand(() => SomeMethod());
  }
}

P.S。在您的View中应该指定DataContext(XAML)

  <Window.DataContext>
    <vm:MainWindowViewModel/>
  </Window.DataContext>

这是工作。我自己刚刚学会了。