命名空间中不存在XAML类

时间:2017-02-13 14:50:21

标签: c# xaml

我收到一条错误消息,指出名称空间中没有新闻类。

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

页面

<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; }
    }
}

1 个答案:

答案 0 :(得分:3)

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

xmlns:data="using:KS2Buddy"

通过

xmlns:data="clr-namespace:KS2Buddy"

这个答案不针对UWP。