我想实现页面导航,左树右明细的效果,模块是通过配置模块加载的,没有添加引用。
目前,在Bootstrapper中加载模块代码为:
ConfigurationModuleCatalog configurationModuleCatalog =new ConfigurationModuleCatalog();
((AggregateModuleCatalog)ModuleCatalog).AddCatalog(configurationModuleCatalog);
导航按钮命令代码为:
containe.RegisterType<object,HelloWordView>("HelloWorldView");
regionManager.RequestNavigate("MainRegion",SecondModule);
目前可以实现导航功能,但是程序中添加了HelloWordView的引用,如果我想完全去掉引用,由配置文件加载模块,如果实现此功能?
可以试试使用接口的方式