使用 MVVM 在控件中嵌入控件
我正在使用 MVVM 构建我的 WPF 应用程序,但遇到了一些设计障碍。我有一个顶级窗口,其中有一些属性,我将其传递到第一级视图模型,并且我可以使用视图模型构造函数轻松完成此操作。但是,如果我想在该级别内拥有一些用户控件,如何将信息传递给它们并传递到它们的视图模型中?
感谢您的帮助
I am building my WPF app with MVVM and am running into a little design stumbling point. I have a top level window that has some properties that I pass down to my first level of viewmodels and I accomplish that easily enough with the viewmodel constructors. But if I want to have some usercontrols inside of that level how do I pass information down to them into their view models?
thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的子 UserControl 需要一个依赖属性,您可以从主控件绑定到该属性。 @Doug Ferguson 在 这篇 SO 帖子中解释了如何执行此操作。希望这有帮助。
You need a Dependency Property on your child UserControls that you can bind to from you main control. @Doug Ferguson explained how to do this in this SO post. Hope this helps.