在我的项目中,我需要使用这个命名空间:
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 ?
我尝试添加此引用,但我没有在列表中找到。
我该怎么办?
提前感谢您的回复。
答案 0 :(得分:1)
您尝试引用的命名空间是WPF库(PresentationFramework.dll
,PresentationCore.dll
)的一部分,这些库未由Mono实现 (和no changes to this are planned so far )。抱歉,不支持完整的WPF - 您必须坚持Silverlight提供的功能。