如何使用MVVM指示灯在文本框文本更改事件上执行命令

时间:2015-08-18 19:15:13

标签: wpf mvvm mvvm-light icommand commandbinding

我已经安装了MVVMLIGHT,但即使在添加参考文件和在xaml文件中使用命名空间之后我仍然无法访问EventToCommand属性

   xmlns:i="http://schemas.microsoft.com expression/2010/interactivity"
   xmlns:cmd="clr-namespace:GalaSoft.MvvmLight;assembly=GalaSoft.MvvmLight"

   <Textbox x:name="quantity">
   <i:Interaction.Triggers>
   <i:EventTrigger EventName="TextChanged">
       //not working    <cmd:EventToCommand Command="{Binding quantityCommand}"/>
    </i:EventTrigger>
    </i:Interaction.Triggers>
    </Textbox>

即使InvokeCommandAction也可以使用,但我也没有这样做.Plz告诉我。谢谢你提前

0 个答案:

没有答案