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

时间:2011-08-24 15:39:43

标签: mono assemblies reference

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

using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

但是当我编译时,我收到一个错误:The type or namespace name 'xxx' does not exist in the namespace 'System.Windows'. Are you missing an assembly reference ?

我尝试添加此引用,但我没有在列表中找到。

我该怎么办?

提前感谢您的回复。

1 个答案:

答案 0 :(得分:1)

您尝试引用的命名空间是WPF库(PresentationFramework.dllPresentationCore.dll)的一部分,这些库未由Mono实现 (和no changes to this are planned so far )。抱歉,不支持完整的WPF - 您必须坚持Silverlight提供的功能。