从使用 MEF 加载的 ChildWindow 调用 MainWindow 中的方法
如何从使用 MEF 加载的 ChildWindow 调用 MainWindow 中的方法
主应用程序和 Mef 库共享相同的接口库
How to invoke a method in the MainWindow from ChildWindow loaded using MEF
Both Main App and the Mef library share the same interface library
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ChildWindow 构造函数中将 MainWindow 引用传递给 ChildWindow。在主窗口中公开必要的方法。然后你可以从 ChildWindow 调用它们。
Pass the MainWindow reference to the ChildWindow in the ChildWindow constructor. Make the necessary methods public in the MainWindow. Then you could call them from ChildWindow.