如何在SL3中使用MEF导出Application.Current?
我似乎被困住了。 有没有办法使用 MEF 导出 Silverlight 项目的 Application.Current,这样当我加载 .XAP(我的 Silverlight 组件项目)文件时,我就可以访问该 .xap 的应用程序?
I seem to be stuck.
Is there a way to export Application.Current of a Silverlight project using MEF, so that when I load .XAP (my Silverlight component project) file I had access to the App of that .xap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
其实没有这个必要。由于 Application.Current< /a> 已经是一个单例,无论如何,一旦您的 .xap 被加载,它就会存在。您不需要通过 MEF 导出它 - 您的组件已经能够直接访问它。
There isn't really a need for this. Since Application.Current is already a singleton, it's going to exist once your .xap is loaded in any case. You shouldn't need to export it via MEF - your component will already be able to access it directly.
试试这个:
其中
Container
是 MEF 的CompositionContainer
。Try this:
where
Container
is MEF'sCompositionContainer
.