作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在努力在 Prism 框架中用 Ninject 替换 Unity。这需要我实现一个 Ninject 特定的 IServiceLocator。据我了解,我可以继承 ServiceLocatorImplBase ,这就是我所做的。现在如何将其设置为当前 ServiceLocator?我需要这个才能拥有例如RegionManager 在创建区域时获取它,并调用:
IServiceLocator locator = ServiceLocator.Current;
void ServiceLocator.SetLocatorProvider(ServiceLocatorProvider newProvider);
最佳答案
ServiceLocatorProvider
是代表,你可以这样做:
var container = NInjectServiceLocator(); // your ServiceLocatorImplBase impl.
ServiceLocator.SetLocatorProvider(() => container);
关于.net - 如何将我的 IServiceLocator 实现设置为 ServiceLocator.Current?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2621843/
我是一名优秀的程序员,十分优秀!