当我在 Visual Studio 的 WPF 设计器中查看数据时,我希望我的用户控件显示数据。

ViewModel 没有默认构造函数,因此我编写了自己的静态 TestData 类来构造模型及其所有依赖项。

public static class TestData
{
    public static ELabelViewModel ELabelViewModel
    {
        get
        {
            return new ELabelViewModel
            (
                new ControlPanelGridLine(TestData.ELabel),
                new SerialPortFactoryImpl(),
                new Repository(),
                new PriceLabelGenerator(TestData.IPriceLabelViewModelFactory)
            );
        }
    }

    // Other static getter methods

这一切编译没有问题。但是,当我在 XAML 中添加它时,问题就开始了:
   d:DataContext="{x:Static local:TestData.ELabelViewModel}"

XAML 编辑器在我的 d:DataContext 属性下放置了一条蓝色卷线,在错误列表中我看到:



我对此的解释是它正在查找 TestData 类,并且还查找 TestData.ELabelViewModel 属性。它只是无法解析在 getter 中调用的构造函数。

为什么找不到 ELabelViewModel 构造函数?为了确认我的代码没有问题,我使用 DataContext= 而不是 d:DataContext= 使这个测试 View 模型成为实际的数据上下文。在这种情况下,我打开应用程序并确认,在运行时,一切都按预期工作:TestData.ELabelViewModel 被调用,getter 函数内部的代码运行,并且它使用了这个 View 模型。只是设计者未能运行代码。
ELabelViewModel 类位于名为 ELabel.Manager.ViewModels 的单独程序集中。编辑器是否无法完全加载此程序集?

稍后编辑

我尝试将此 TestData 类移动到 ELabel.Manager.ViewModels 程序集(构造函数所在的程序集)。果然,现在工作正常了,在编辑器中查看控件的时候可以看到测试数据。好奇的。

我已经仔细检查了 ELabelViewModel 类和构造函数是否是公开的(当然是公开的,否则我永远无法构建应用程序)。

最佳答案

我实现了所有这样的viewmodel类:

<UserControl x:Class="MyApp.Views.MainView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:vm="clr-namespace:MyApp.ViewModel"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             mc:Ignorable="d" Height="607" Width="616">

    <UserControl.DataContext>
        <vm:TestData/>
    </UserControl.DataContext>

10-08 02:38