在Prism Bootstrapper里面取实例的时候使用 ServiceLocator模式,使用的是CommonServiceLocator库 (http://commonservicelocator.codeplex.com/)。
ServiceLocation定义了IServiceLocator及其基本实现ServiceLocatorImplBase;定义了IServiceLocator委托ServiceLocatorProvider;定义了ActivationException;还有个静态类ServiceLocator。
Prism ServiceLocator的设置和使用
1. Bootstrapper定义了抽象方法去设置ServiceLocator
protected abstract void ConfigureServiceLocator();
UnityBootstrapper提供了使用Unity Container的实现:
UnityServiceLocatorAdapter:
public class UnityServiceLocatorAdapter : ServiceLocatorImplBase
{
设置Unity Container到ServiceLocator:
protected override void ConfigureServiceLocator()
{
ServiceLocator.SetLocatorProvider(() => this.Container.Resolve<IServiceLocator>());
}
2. 使用ServiceLocator:
/// <summary>
/// Initializes the modules. May be overwritten in a derived class to use a custom Modules Catalog
/// </summary>
protected virtual void InitializeModules()
{
IModuleManager manager = ServiceLocator.Current.GetInstance<IModuleManager>();
manager.Run();
}