我正在编写一个应用程序,我想在其中添加导航功能。该应用程序正在使用WPF,而我正在使用Prism 7.2.0.1367。
因此,我创建了2个视图:HomePage
和ModeFileAttente
视图。
我也在使用MVVM模式。
这是我的app.xaml.cs
:
public partial class App : PrismApplication
{
protected override Window CreateShell()
{
return Container.Resolve<V.HomePage>();
}
protected override void RegisterTypes(IContainerRegistry containerRegistry)
{
containerRegistry.RegisterDialog<V.HomePage, VM.HomePageViewModel>();
containerRegistry.RegisterDialog<V.ModeFileAttente, VM.ModeFIleAttenteViewModel>();
}
protected override void ConfigureModuleCatalog(IModuleCatalog moduleCatalog)
{
moduleCatalog.AddModule<Bootstrapper>();
}
}
我的HomePage.xaml
:
<Window x:Class="TestWPF.View.HomePage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:prism="http://prismlibrary.com/"
prism:ViewModelLocator.AutoWireViewModel="True"
mc:Ignorable="d"
Title="HomePage" Height="347.667" Width="664">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="277*"/>
<ColumnDefinition Width="16*"/>
</Grid.ColumnDefinitions>
<DockPanel Grid.ColumnSpan="2" Margin="0,0,0.333,-0.333">
<Button Padding="0" DockPanel.Dock="Left" Content="Mode normal" Command="{Binding ClickCommand}" CommandParameter="ModeFileAttente"/>
<Button Padding="0" DockPanel.Dock="Right" Content="Mode tournois" HorizontalAlignment="Stretch"/>
</DockPanel>
<ContentControl prism:RegionManager.RegionName="ContentRegion" Margin="5" />
</Grid>
</Window>
这是视图模型:
class HomePageViewModel : BindableBase, IDialogAware, INotifyPropertyChanged
{
#region Private region
private readonly IRegionManager _regionManager;
public event Action<IDialogResult> RequestClose;
#endregion
public DelegateCommand<string> ClickCommand { get; private set; }
public string Title => throw new NotImplementedException();
public HomePageViewModel(IRegionManager regionManager)
{
_regionManager = regionManager;
ClickCommand = new DelegateCommand<string>(ExecuteClickCommand);
}
private void ExecuteClickCommand(string path) {
_regionManager.RequestNavigate("ContentRegion", "FileAttente");
}
public bool CanCloseDialog()
{
throw new NotImplementedException();
}
public void OnDialogClosed()
{
throw new NotImplementedException();
}
public void OnDialogOpened(IDialogParameters parameters)
{
throw new NotImplementedException();
}
}
我还有一个Bootstrapper
课:
public class Bootstrapper : IModule
{
public void OnInitialized(IContainerProvider containerProvider)
{
}
public void RegisterTypes(IContainerRegistry containerRegistry)
{
containerRegistry.RegisterForNavigation<ModeFileAttente>();
}
}
我的MVVM模式工作正常,但是当我要在“主页”和“ ModeFileAttente”视图之间导航时,除了视图上的“ System.Object”之外,什么都没有发生。
我已经搜索了可能是什么问题,但没有解决我问题的东西。
有人用这个版本的棱镜仍然遇到这个错误吗?
PS:我的2个视图位于“视图”文件夹中,与ViewModel文件夹中的视图模型相同
答案 0 :(得分:1)
我相信您应该在初始化时向区域注册视图。试试下面的代码
public class Bootstrapper : IModule
{
public void OnInitialized(IContainerProvider containerProvider)
{
_regionManager.RegisterViewWithRegion("RegionName", typeof(View));
_regionManager.RegisterViewWithRegion("RegionName", typeof(View2));
}
}
现在您可以使用
_regionManager.RequestNavigate("RegionName", "View");
或
_regionManager.RequestNavigate("RegionName", "View2");
更新
如果我们使用棱镜,那么应该有与其相关的依赖项注入框架,例如MEF
或Unity
对于我的项目,如果您使用的是{{1} },那么您可以通过添加将由Prism.Unity.Wpf
注入的构造函数,来要求依赖注入器注入RegionManager,见下文
Unity
当您将IRegionManager
注入构造函数 readonly IRegionManager _regionManager;
public Bootstrapper(IRegionManager regionManager)
{
_regionManager = regionManager;
}
时,便会知道始终提供相同的实例,就像在IRegionManager
中维护它一样,因此无需担心使用相同的{{ 1}}。
当我们在XAML中使用Unity
时,实际上是让占位符说Unity
,某个区域在某些时候会被任何IRegionManager
填充。
这是我的理解。如果您觉得这很有用,请告诉我。
答案 1 :(得分:0)
“ FileAttente”应为“ ModeFileAttente”:
_regionManager.RequestNavigate("ContentRegion", "ModeFileAttente");
没有注册用于导航的“ FileAttente”视图。