我的项目中缺少程序集引用

发布于 2024-11-30 23:48:10 字数 329 浏览 1 评论 0原文

在我的项目中,我需要使用这个命名空间:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时光的容颜 2024-12-07 23:48:10

您尝试引用的命名空间是 WPF 库(PresentationFramework.dllPresentationCore.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文