gpt4 book ai didi

c# - WPF、MVVM 和 PRISM - 没有为此对象定义无参数构造函数

转载 作者:太空狗 更新时间:2023-10-30 00:38:25 26 4
gpt4 key购买 nike

回答好的所以添加 E-Bat 给出的建议代码没有任何影响,直到我开始一个新项目并逐字复制所有代码。我只能假设 http://prismlibrary.com/ 上的 ViewModelLocator 中必须有一些后台代码它没有更新以考虑无参数构造函数。希望这对遇到同样问题的其他人有帮助

原始问题我已经使用 Prism 建立了一个 MVVM 项目。我有一个 MainWindow.xaml 和 5 个 View ;我正在使用的 ButtonsView、HeaderView、ProcessInputView、ProcessLogView 和 ProcessSelectionView,每个 View 都有一个关联的 ViewModel。

主窗口.xaml

<Window x:Class="TransactionAutomationTool.Views.MainWindow"
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:local="clr-namespace:TransactionAutomationTool"
xmlns:views="clr-namespace:TransactionAutomationTool.Views"
xmlns:prism="http://prismlibrary.com/"
prism:ViewModelLocator.AutoWireViewModel="True"
mc:Ignorable="d"
Title="MainWindow" Height="600" Width="800">
<Grid>
<views:HeaderView x:Name="HeaderViewControl" Margin="20,21,0,0" />
<views:ProcessSelectionView x:Name="ProcessSelectionViewControl" Margin="20,119,0,0" />
<views:ProcessInputView x:Name="ProcessInputViewControl" Margin="20,280,0,0" />
<views:ProcessLogView x:Name="ProcessLogView" Margin="298,105,0,0" />
<views:ButtonsView x:Name="ButtonViewControl" Margin="0,513,0,0" />
</Grid>

主窗口 View 模型

public class MainWindowViewModel: BindableBase
{

public IEventAggregator _events;
private UserPrincipal userPrincipal;
public MainWindowViewModel(IEventAggregator events)
{
_events = events;
userPrincipal = UserPrincipal.Current;
_events.GetEvent<HeaderLoaded>().Subscribe(HeaderHasBeenLoaded);

}

private void HeaderHasBeenLoaded()
{
_events.GetEvent<UserNameUpdate>().Publish(string.Format("{0} {1}", userPrincipal.GivenName, userPrincipal.Surname));
}
}

当我尝试在设计模式下查看主窗口时,出现以下错误 Screenshot of MainWindow In design Mode

找不到此对象的无参数构造函数 - 这突出显示了 HeaderView 和 ButtonsView

HeaderViewModel 和 ButtonsViewModel 都将 IEventAggregator 作为其构造函数中的参数,而其余的 ViewModel 则不这样做。我假设这是错误的来源。

标题 View 模型

public class HeaderViewModel: BindableBase
{
private string userName;
private string runTime;

public string UserName
{
get { return userName; }
set { SetProperty(ref userName, value); }
}

public string RunTime
{
get { return runTime; }
set { SetProperty(ref runTime, value); }
}

public HeaderViewModel(IEventAggregator events)
{
events.GetEvent<RunTimeUpdate>().Subscribe(RunTimeUpdated);
events.GetEvent<UserNameUpdate>().Subscribe(UserNameUpdated);
events.GetEvent<HeaderLoaded>().Publish();
}

private void RunTimeUpdated(string newRunTime)
{
RunTime = newRunTime;
}

private void UserNameUpdated(string userName)
{
UserName = userName;
}
}

如果我需要订阅这些事件并因此需要将 IEventAggregator 传递到我的 ViewModel,我该如何避免这个错误?

我是否需要通过覆盖 ConfigureContainer 方法在 Bootstrap 中注册它?如果是这样,我不完全确定该怎么做。

自举

class Bootstraper: UnityBootstrapper
{
protected override DependencyObject CreateShell()
{
return Container.Resolve<MainWindow>();
}

protected override void InitializeShell()
{
Application.Current.MainWindow.Show();
}
}

应用程序构建成功并成功运行,但只是在我尝试在设计器中查看主窗口时收到此消息。

如有任何帮助,我们将不胜感激。编辑我所有的 View 构造函数都只有 initalizeComponent 方法并且不带参数

最佳答案

标记为已接受的答案解决了异常,但没有回答有关原因的问题。此外,这种方法将使单元测试变得非常困难,因为您会将数据上下文设置为特定对象而不是传递依赖项。

你得到异常的原因是因为 HeaderView 没有被容器实例化(默认情况下它是 UnityContainer)。

您在设计时构建整个 MainWindow 而不是单独的部分。在主窗口中尝试以下操作

<Grid>
<Grid.RowDefinitions>
<RowDefinitions />
<RowDefinitions />
<RowDefinitions />
<RowDefinitions />
<RowDefinitions />
</Grid.RowDefinitions>
<ContentControl Grid.Row="0" prism.RegionManager.RegionName="Row0Region" />
<ContentControl Grid.Row="1" prism.RegionManager.RegionName="Row1Region" />
<ContentControl Grid.Row="2" prism.RegionManager.RegionName="Row2Region" />
<ContentControl Grid.Row="3" prism.RegionManager.RegionName="Row3Region" />
<ContentControl Grid.Row="4" prism.RegionManager.RegionName="Row4Region" />
</Grid>

然后您可以使用 View Discovery 或 View Injection。对于 View Discovery,您可以执行类似

this.RegionManager.RegisterViewWithRegion("Row0Region", HeaderView()) 其余 View 依此类推。

您可以在模块的初始化方法或其他地方用区域注册 View 。由你决定在哪里做。您可以覆盖 Bootstrap 的 Run 方法。基本运行方法完成后,您可以注册您的 View 。

当显示主窗口时,将发现所有区域,RegionManager 将使用已注册到每个区域的 View 填充区域。

区域管理器将使用容器实例化 View 。当容器构建每个 View 时,它们的 View 模型将自动连接起来。此外,IEventAggregator 将提供给 HeaderView 的 View 模型。

本文基于 Prism 4 - https://www.codeproject.com/Articles/165376/A-Prism-Application-Checklist但它谈到了如何构建 View 。

关于c# - WPF、MVVM 和 PRISM - 没有为此对象定义无参数构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41264595/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com