我将 Prism 4 和 MEF 用于 WPF 项目。我有一些需要从目录加载的 DLL。这些 DLL通过IGame实现IModule并且格式正确(或者至少我认为是这样):
[Module(ModuleName = "SnakeModule")]
class SnakeModule : IGame
{
public void Initialize()
{
Console.WriteLine("test");
}
public void StartGame()
{
throw new NotImplementedException();
}
}
目前,主项目正在编译,但模块未初始化。我很难理解如何设置我的引导程序,并且文档没有太大帮助,因为它没有完整的DirectoryModuleCatalog示例。模块化快速入门也没有编译。这是我的引导程序:
class BootStrap : MefBootstrapper
{
protected override DependencyObject CreateShell()
{
return ServiceLocator.Current.GetInstance<Shell>();
}
protected override void InitializeShell()
{
Application.Current.MainWindow = (Window)this.Shell;
Application.Current.MainWindow.Show();
}
protected override void ConfigureAggregateCatalog()
{
this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(typeof(BootStrap).Assembly));
}
protected override IModuleCatalog CreateModuleCatalog()
{
DirectoryModuleCatalog catalog = new DirectoryModuleCatalog() { ModulePath = @"..\..\..\GameTestLib\bin\Debug" };
return catalog;
}
protected override void ConfigureContainer()
{
base.ConfigureContainer();
}
}
DLL 的路径是正确的。总而言之,我的问题是:我应该如何设置我的引导程序?