MEF 与 Unity 导入视图模型

发布于 2024-12-07 15:29:11 字数 84 浏览 1 评论 0原文

使用 Unity 时,您可以在视图模式的构造函数中导入容器。

但是我该如何将 MEF 容器导入视图模型来解析实例呢?

谢谢

When using unity you can import the container in the constructor of a view moder per say.

But how would I do import a MEF container into a view model to resolve instances?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

短叹 2024-12-14 15:29:11

一般来说,绕过容器并不是一个好主意,因为您最终将其更多地用作服务定位机制,但如果您希望这样做,则需要手动导出容器,例如:

var container = new CompositionContainer(catalog);
container.ComposeExportedValue(container);

这将使您能够导入它:

[Import]
public CompositionContainer Container { get; set; }

或者:

[ImportingConstructor]
public MyClass(CompositionContainer container) { }

Generally, it is not a great idea to be passing round the container, as you end up using it as more of a service-location mechanism, but should you wish to do so, you would need to manually export the container, e.g.:

var container = new CompositionContainer(catalog);
container.ComposeExportedValue(container);

This will enable you to import it:

[Import]
public CompositionContainer Container { get; set; }

Or:

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