如何在SL3中使用MEF导出Application.Current?

发布于 2024-10-20 14:59:58 字数 123 浏览 2 评论 0原文

我似乎被困住了。 有没有办法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

依 靠 2024-10-27 14:59:58

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.

┊风居住的梦幻卍 2024-10-27 14:59:58

试试这个:

Container.ComposeExportedValue(Application.Current);

其中 Container 是 MEF 的 CompositionContainer

Try this:

Container.ComposeExportedValue(Application.Current);

where Container is MEF's CompositionContainer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文