在使用PRISM的WPF项目中,我有两个区域。 ContentRegion
和ToolBarRegion
。
在ContentRegion
中创建新的SubShell时,将创建Scoped RegionManager
。
内容区域:
<ContentControl prism:RegionManager.RegionName="{x:Static common:RegionNames.ContentRegion}" />
ToolBar Region:
<ContentControl prism:RegionManager.RegionName="{x:Static common:RegionNames.ToolBarRegion}" />
直到这里非常基本。
我的问题是当我想从工具栏导航到SubShells时,Scoped RegionManager
区域不存在。
那么如何将ContentRegion中的SubShells中的Scoped RegionManager
传递给ToolBarRegion中的我的视图?