当我查看 Prism 导航快速入门演示时,它使用 Mef Bootstrapper 并使用IPartImportsSatisfiedNotification
文件中的Shell.xaml.cs
接口将默认视图加载到Shell Region如下。
[Export]
public partial class Shell : UserControl, IPartImportsSatisfiedNotification
{
...
public void OnImportsSatisfied()
{
this.ModuleManager.LoadModuleCompleted +=
(s, e) =>
{
if (e.ModuleInfo.ModuleName == EmailModuleName)
{
this.RegionManager.RequestNavigate(
RegionNames.MainContentRegion,
InboxViewUri);
}
};
}
}
在我的项目中,我使用 Unity Bootstrapper 并尝试引用此演示以加载默认视图。正如所料,它完全不起作用。
请分享关于“如何使用Unity Bootstrapper将默认视图注入Shell区域”的建议和一些建议。
答案 0 :(得分:4)
假设您的引导程序中有一个CreateModuleCatalog覆盖,您可以使用它将模块添加到目录中。
catalog.AddModule(typeof(YourModule));
在YourModule Initiaize覆盖中,注册您想要显示的视图,如下所示。
使用视图发现:
RegionManager.RegisterViewWithRegion("YourRegion", typeof(YourView));
OR
使用视图注入(如果你想要更多控制,或需要一个范围区域等):
IRegion region = _region_manager.Regions["YourRegion"];
var view = _container.Resolve<YourView>();
region.Add(view, typeof(YourView).FullName);
region.Activate(view);
这种注入方法需要您对区域管理器的引用,并且您已使用Unity容器注册了视图,并且您有对容器的引用
只要YourRegion区域位于Shell xaml中,并且在运行时可见,YourView就会显示在其中。
Hello World快速入门也显示了这一点,并使用了Unity容器。
https://github.com/PrismLibrary/Prism-Samples-Wpf/tree/master/HelloWorld
答案 1 :(得分:3)
只需将视图添加到视图来自的Module.Initialize中的区域。
答案 2 :(得分:1)
我遇到过这个问题 如果你使用prism.Unity,wpf
你可以设置
protected override IRegionBehaviorFactory ConfigureDefaultRegionBehaviors()
{
var factory = base.ConfigureDefaultRegionBehaviors();
factory.AddIfMissing("AutoPopulateExportedViewsBehavior",typeof(AutoPopulateExportedViewsBehavior));
return factory;
}
为“AutoPopulateExportedViewsBehavior”添加新课程后
public class AutoPopulateExportedViewsBehavior : RegionBehavior
{
public static string Key {
get;
} = nameof( AutoPopulateExportedViewsBehavior );
protected override void OnAttach()
{
this.Region.ActiveViews.CollectionChanged += this.ActiveViews_CollectionChanged;
}
private void ActiveViews_CollectionChanged( object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e )
{
switch ( e.Action )
{
case NotifyCollectionChangedAction.Add:
Action<IRegionManagerAware> setRegionManager = x => x.RegionManager = this.Region.RegionManager;
MvvmHelpers.ViewAndViewModelAction( e.NewItems[0], setRegionManager );
break;
case NotifyCollectionChangedAction.Remove:
Action<IRegionManagerAware> resetRegionManager = x => x.RegionManager = null;
MvvmHelpers.ViewAndViewModelAction( e.OldItems[0], resetRegionManager );
break;
}
}
}
你需要一个界面来找到“RegionManager”
public interface IRegionManagerAware
{
IRegionManager RegionManager {
get; set;
}
}
最后,告诉程序你需要一个默认视图,
public class ModulesModule : IModule
{
IRegionManager _regionManager;
IUnityContainer _container;
public ModulesManagementModule( RegionManager regionManager, IUnityContainer container )
{
_regionManager = regionManager;
_container = container;
}
public void Initialize()
{
_container.RegisterTypeForNavigation<ViewA>();
_regionManager.RequestNavigate("ViewA", "ViewA" );
}
}
想法和解决方案来自: enter link description here
通过此示例,您可以获得Navigate的默认视图
答案 3 :(得分:0)
您已加载/注册模块。你可以通过很多方式做到这一点。
在bootstrapper.cs
:
protected override void ConfigureModuleCatalog()
{
Type ModuleAType = typeof(ModuleAModule);
ModuleCatalog.AddModule(new ModuleInfo()
{
ModuleName = moduleAType.Name,
ModuleType = moduleAType.AssemblyQualifiedName,
InitializationMode = InitializationMode.WhenAvailable
});
}
在bootstrapper.cs
:
protected override IModuleCatalog CreateModuleCatalog()
{
return new DirectoryModuleCatalog() { ModulePath = @".\Modules" };
}
在bin \ Debug目录中创建Modules
目录,并将ModuleA.dll
文件复制/粘贴到此目录。
在ModuleAModulle.cs
中,您可以定义模块名称和初始化方法:
[Module(ModuleName="ModuleA", OnDemand=true)]
public class ModuleAModule : IModule
{
public void Initialize()
{
throw new NotImplementedException();
}
}
将新的资源字典添加到shell项目中,并将构建操作设置为Resource。 (在此示例中,它称为XamlCatalog.xaml
)
<Modularity:ModuleCatalog
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Modularity="clr-namespace:Microsoft.Practices.Prism.Modularity;assembly=Microsoft.Practices.Prism">
<Modularity:ModuleInfo Ref="file://ModuleA.dll" ModuleName="ModuleA" ModuleType="ModuleA.ModuleAModule, ModuleA, Version=1.0.0.0" InitializationMode="WhenAvailable" />
</Modularity:ModuleCatalog>
在bootstrapper.cs
:
protected override IModuleCatalog CreateModuleCatalog()
{
return Microsoft.Practices.Prism.Modularity.ModuleCatalog.CreateFromXaml(
new Uri("/ProjectNameHere;component/XamlCatalog.xaml", UriKind.Relative));
}
请勿忘记将ModuleA.dll
文件复制/粘贴到项目的根目录,因为您已在XamlCatalog.xaml
文件中引用该文件。
在bootstrapper.cs
:
protected override IModuleCatalog CreateModuleCatalog()
{
return new ConfigurationModuleCatalog();
}
在&#39; App.config&#39;:
中<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="modules" type="Prism.Modularity.ModulesConfigurationSection, Prism.Wpf"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<modules>
<module assemblyFile="Modules/ProjectNameHere.ModuleA.dll" moduleType="ProjectNameHere.ModuleA.ModuleAModule, ProjectNameHere.ModuleA, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" moduleName="ModuleA" startupLoaded="true" />
<module assemblyFile="Modules/ProjectNameHere.ModuleB.dll" moduleType="ProjectNameHere.ModuleB.ModuleBModule, ProjectNameHere.ModuleB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" moduleName="ModuleB" startupLoaded="true" />
<module assemblyFile="Modules/ProjectNameHere.ModuleC.dll" moduleType="ProjectNameHere.ModuleC.ModuleCModule, ProjectNameHere.ModuleC, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" moduleName="ModuleC" startupLoaded="true" />
</modules>
</configuration>
我从Prims Introduction course on Pluralsight获得了这些信息。