gpt4 book ai didi

c# - 命名空间中不存在 XAML 类

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

我收到一条错误消息,指出命名空间中不存在 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/

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