我正在使用PRISM并在XAML MainWindowView中有两个区域:
<IG6:SplitPane IG6:XamDockManager.InitialLocation="DockedTop">
<IG6:TabGroupPane x:Name="MessageGroupPane" prism:RegionManager.RegionName="{x:Static inf:RegionNames.MessageGroupPane}">
<IG6:SplitPane IG6:XamDockManager.InitialLocation="DockedBottom"
<IG6:TabGroupPane x:Name="MainContentGroupPane" prism:RegionManager.RegionName="{x:Static inf:RegionNames.MainContentGroupPane}">
public class InfrastructureModule : IModule
{
container.RegisterType<IMessageViewVM, MessageViewVM>();
container.RegisterType<object, MessageView>("MessageView");
regionManager.RegisterViewWithRegion(RegionNames.MessageGroupPane, typeof(MessageView));
}
当代码执行时,所有视图都放在XAML中标识的最后tabGroupPane
中 - 在这种情况下是MainContentGroupPane
- 不在请求的区域MessageGroupPane
中。
我正在使用Brian Lagunas提供的示例中的TabGroupPaneRegionActiveAwareBehavior
。视图显示正确,但我无法将它们放在特定区域。有人能指出我正确的方向吗?
答案 0 :(得分:0)
您应该在模块中注册目标视图 TargetView 以进行导航:
container.RegisterTypeForNavigation<TargetView>();