传递给CallMethodAction行为

传递给CallMethodAction行为

本文介绍了有没有一种方法可以将参数(或多个参数)传递给CallMethodAction行为?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以将参数(或多个参数)传递给 CallMethodAction 行为?

Is there a way to pass a parameter (or multiple params) to the CallMethodAction behavior?

推荐答案

尝试使用InvokeCommandAction命令而不是使用CallMethodAction:

Try InvokeCommandAction a command instead of using CallMethodAction:

<i:Interaction.Triggers>
  <i:EventTrigger EventName="TextChanged">
    <i:InvokeCommandAction Command="{Binding TextChangedCommand}"
        CommandParameter="{Binding ElementName=filterBox, Path=Text}"/>
  </i:EventTrigger>
</i:Interaction.Triggers>

希望有帮助

这篇关于有没有一种方法可以将参数(或多个参数)传递给CallMethodAction行为?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 16:27