我可以在 canExecute 谓词中再添加一个条件吗?
我在 WPF MVVM 应用程序中使用 Josh Smith 的 RelayCommand。
我有一个视图模型。在其中我引用了另一个 ViewModel。
子 ViewModel 有一个 ICommand 类型的属性。
在我的父 ViewModel 中,我可以向“CanExecute”谓词再添加一个条件吗?
I am using Josh Smith's RelayCommand in my WPF MVVM application.
I have a ViewModel. Inside that I have a reference to another ViewModel.
The child ViewModel has a property of type ICommand in it.
In my parent ViewModel, can I add one more condition to the "CanExecute" predicate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您至少有两个选择:
第二个选项在孩子身上可能看起来像这样:
You have at least two choices:
The second option might look something like this in the child: