在MVVM-Light工具包中使用EventToCommand时如何传递多个参数和EventArgs属性
我正在为我的 WPF 应用程序使用 MVVM Light 工具包,我想知道在使用 EventToCommand 时是否可以将多个参数传递给 RelayCommand 以及是否可以传递 EventArgs 的属性而不是传递整个 EventArgs ?
问候, 纳比尔
I am using MVVM Light toolkit for my WPF application and I would like to know if its possible, when using EventToCommand, to pass multiple parameters to RelayCommand and Is it possible to pass properties of EventArgs instead of passing the whole EventArgs ?
Regards,
Nabeel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果场景是
按下回车键时的情况,我需要从文本框中读取文本并执行搜索。
使用这个我可以过滤按下了哪个键,但是如果在此 mvvmlight 中按下 Enter 键,如何获取该参数。
what if the scenario is
what is on enter key press i need to read the text from the textbox and perform search.
using this I can filter which key has been pressed but how to get that parameter if enter key is pressed in this mvvmlight.
如果您只想捕获回车键按下的情况,则可以通过 InputBinding 创建 KeyBinding。下面的 XAML 示例将捕获 TextBox 中的 Enter 按键,而命令(本例中为 FindCommand)将在 ViewModel 中处理它。
为我工作!
If all you want to do is capture the enter key press, you can create a KeyBinding via InputBinding. The following example in XAML would capture the Enter key press in the TextBox and the Command, FindCommand in this case, would handle it in your ViewModel.
Worked for me!