wpf mvvm 自定义控件 - 在控件上调用操作
我有一个自定义控件,正在我的 MVVM Prism 项目中的视图上使用 - 我们已将其完全解耦,以便 ViewModel 无法访问该视图。
我想从 ViewModel 上的命令处理程序调用客户控件上的方法。
连接它的最佳方法是什么?
谢谢,
安迪
I've got a custom control that I'm using on a View in my MVVM Prism project - we've completely decoupled it so that the ViewModel does not have any access to the View.
From a command handler on my ViewModel I want to call a method on my Customer Control.
Whats the best way to hook it up?
Thanks,
Andy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看是否可以将控件的属性绑定到 VM 上的属性,并在 Control 本身中注册控件属性的更改。这样你就不必知道VM中Control的方法。
See if you can bind a property of the control to a property on the VM and register for the change of the control's property in the Control itself. That way you do not have to know the method of the Control in the VM.