c# – 名称空间’System.Windows’中不存在类型或命名空间名称’Documents’

c# – 名称空间’System.Windows’中不存在类型或命名空间名称’Documents’,第1张

概述参见英文答案 > How to find an assembly name for a .NET namespace, for example, Microsoft.WindowsAzure.ServiceRuntime                                    2个 该行使用System.Windows.Documents;产生以下编译错误: The type or 参见英文答案 > How to find an assembly name for a .NET namespace,for example,Microsoft.WindowsAzure.ServiceRuntime2个
该行使用System.windows.documents;产生以下编译错误:

The type or namespace name ‘documents’ does not exist in the namespace ‘System.windows’ (are you missing an assembly reference?)

我尝试在“添加引用…”对话框中找到程序集,但未列出System.windows.documents,因为通常是在发生此错误时.

我需要为此using子句添加哪个程序集?

解决方法 此命名空间中的类包含在Presentation Framework程序集中,这是您需要添加的引用.

此程序集还为这些名称空间提供了类:

> System.windows.documents
> System.windows.Media
> System.windows.Media.Animation
> System.windows.Shell

请注意,程序集(类的物理集合)本身不提供名称空间(逻辑上是类的组织),它们包含在名称空间中具有自己的分类的类.因此,程序集可以“包含”许多名称空间,并且命名空间可以出现在许多程序集中.这解释了为什么它没有列在MSDN page上的System.windows.documents(感谢CodeCaster和damIEn_The_UnbelIEver)

总结

以上是内存溢出为你收集整理的c# – 名称空间’System.Windows’中不存在类型或命名空间名称’Documents’全部内容,希望文章能够帮你解决c# – 名称空间’System.Windows’中不存在类型或命名空间名称’Documents’所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1263665.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存