WPF错误消息<name =“”“x”=“”does =“”not =“”exists =“”in =“”=“”namespace =“”“y”=“”>

时间:2017-09-10 15:33:41

标签: wpf xaml namespaces visual-studio-2017

在Visual Studio中,我有一堆以下类型的错误消息:

名称&#34; X&#34;命名空间中不存在&#34; Y&#34;。

我尝试了这里建议的解决方案:

How do I fix error saying "The type or namespace name X does not exist in the namespace Y"?

在这里:

the name <...> does not exist in the namespace clr-namespace <...>

没有任何效果。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您需要指定在命名空间映射(assembly=NameOfTheProject)中定义类型的项目(程序集)的名称:

xmlns:local="clr-namespace:YourNamespace;assembly=NameOfTheProject"