在XAML设计器中找不到DataContext类(尽管看起来一切正常)

时间:2019-01-23 21:40:19

标签: c# wpf xaml namespaces datacontext

我正在尝试通过XAML文件设置数据上下文

<Window x:Class="LocationScout.SettingsDeleteWindow"
    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:ViewModel="clr-namespace:LocationScout.ViewModel"
    mc:Ignorable="d"
    Title="Delete" Height="315" Width="350" 
    WindowStartupLocation="CenterScreen">

<Window.DataContext>
    <ViewModel:SettingsDeleteDisplayItem/>
</Window.DataContext>

但是,XAML编辑器显示错误“名称空间“ clr-namespace:LocationScout.ViewModel”中不存在名称“ SettingsDeleteDisplayItem”。

视图模型类对我来说很好:

namespace LocationScout.ViewModel
{
    public class SettingsDeleteDisplayItem : BaseObservableObject
    {
         private long _countryAreaCountToDelete;

         public long CountryAreaCountToDelete
         {
            get => _countryAreaCountToDelete;
            set
            {
                _countryAreaCountToDelete = value;
                OnPropertyChanged();
            }
        }
    }
}

构建解决方案可以正常工作而不会出错。任何想法?非常感谢。

1 个答案:

答案 0 :(得分:0)

正如@RobertHarvey在评论中所指出的,我改为小写并重新启动了Visual Studio。现在可以了。

仅重建解决方案没有帮助(我之前尝试过)。