命名空间中不存在

命名空间中不存在

我收到一条错误消息,指出命名空间中不存在 News 类。

尝试了许多在线提供的解决方案,例如重建等,但似乎没有任何效果。任何帮助将不胜感激。

这页纸

<Page
    x:Class="KS2Buddy.Home"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:KS2Buddy"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    xmlns:data="using:KS2Buddy">
    <Page.Resources>
        <DataTemplate x:DataType="data:News"
                      x:Key="NewsItemTemplate">
        </DataTemplate>
    </Page.Resources>

</Page>


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace KS2Buddy
{
    class News
    {
        public string Title { get; set; }
        public string Image { get; set; }
        public string Text { get; set; }
    }
}

最佳答案

如果您使用的是 WPF,请尝试替换

xmlns:data="using:KS2Buddy"

经过
xmlns:data="clr-namespace:KS2Buddy"

此答案不针对 UWP。

关于c# - XAML 类在命名空间中不存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42206894/

10-13 01:58