gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 22:22:05 25 4
gpt4 key购买 nike

我有一个类,它为对象选择 ItemDataTemplate。但我无法在我的 XAML 代码中引用它。 (页面.资源)。

它是 XAML 中的项目页面。该类位于 commons 文件夹中,我在此处引用了 commons 文件夹:

xmlns:common="using:Sample_App.Common"

然后当我不想将它添加到我的 XAML 时:

<common:MyDataTemplateSelector x:Key="Selector" AdTemplate="{StaticResource Ad}" NormalTemplate="{StaticResource Normal}"></common:MyDataTemplateSelector>

我收到以下错误:

The name "MyDataTemplateSelector" does not exist in the namespace "using:MyDataSelector"

这是 MyDataSelector 类:

namespace MyDataSelector
{
private class MyDataTemplateSelector : DataTemplateSelector
{
public DataTemplate NormalTemplate { get; set; }

public DataTemplate AdTemplate{ get; set; }

protected override DataTemplate SelectTemplateCore(object item, DependencyObject container)
{
if (item is TestApp.Mainpage.NormalData)
return NormalTemplate
if (item is TestApp.Mainpage.AdData)
return AdTemplate;

return SelectTemplateCore(item, container);
}
}
}

最佳答案

您的代码有几个问题。首先,你提到你的类(class)在“公共(public)文件夹”中——这完全无关紧要。代码文件的位置通常对编译器无关紧要,但您在其中声明类的 namespace 确实很重要。

namespace MyDataSelector // <- This is where your class can be found
{
private class MyDataTemplateSelector : DataTemplateSelector
{

因此,由于您的类位于命名空间 MyDataSelector 中,因此您的 xaml 文件中的引用应如下所示:

<Page x:Class="WpfApplication1.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:myDataSelector="using:MyDataSelector">

你会像这样引用你的类:

<myDataSelector:MyDataTemplateSelector />

另一个问题是您的类被声明为私有(private)的。那没有意义,可能不会编译。删除 private 以使您的类成为内部类,或将其更改为 public

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

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