我的项目中缺少程序集引用
在我的项目中,我需要使用这个命名空间:
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
但是当我编译时,我收到错误:命名空间“System.Windows”中不存在类型或命名空间名称“xxx”。您是否缺少程序集引用?
我尝试添加此引用,但在列表中没有找到。
我能做些什么 ?
预先感谢您的回复。
In my project, i need to use this namespaces :
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
But when I compile, I get an error: The type or namespace name 'xxx' does not exist in the namespace 'System.Windows'. Are you missing an assembly reference ?
I tried to add this references but i didn't find in the list.
What can i do ?
Thanks in advance for your reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试引用的命名空间是 WPF 库(
PresentationFramework.dll
、PresentationCore.dll
)的一部分,Mono 根本没有实现它们(并且到目前为止还没有计划对此进行更改)。抱歉,不支持完整的 WPF - 您必须坚持使用 Silverlight 提供的功能。The namespaces you are trying to reference are part of WPF libraries (
PresentationFramework.dll
,PresentationCore.dll
) which are not implemented at all by Mono (and no changes to this are planned so far). Sorry, but full WPF is not supported - you'll have to stick to just what Silverlight offers.