3

我使用 Mvvm 灯(wpf45)。

我想在 XAML 中添加 EventToCommand,我用这个

xmlns:cmd ="http://www.galasoft.ch/mvvmlight"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"

但不要添加 EventToCommand

<Button>
  <i:Interaction.Triggers>
    <i:EventTrigger EventName="Click">
     <cmd:EventToCommand/>
    </i:EventTrigger>
  </i:Interaction.Triggers>
</Button>

我收到错误<cmd:EventToCommand/>

4

2 回答 2

0

使用此参考,

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

您可以使用 EventToCommand 类。

希望它对你有帮助:)

于 2014-12-17T11:11:18.360 回答
-1

我认为你应该这样编码。

<i:Interaction.Behaviors>
 <i:EventToCommand EventName="YourPropertyEvent" Command="YourBinding"/>
</i:Interaction.Behaviors>
于 2018-11-20T01:39:12.737 回答