对于我的项目,我需要vector
和polygon
类型。我在MSDN上发现我必须在我的项目中包含WindowsBase
(见下文),但这不起作用。
using System.Windows
using System.Windows.Windowsbase
我在哪里可以找到要包含的正确程序集?
我可以不添加它们,因为它是一个Windows手机项目吗?
我在互联网上看到其他几个人也有这个问题。
完整错误为Error 1 The type or namespace name 'Vector' could not be found (are you missing a using directive or an assembly reference?)
答案 0 :(得分:0)
您不能在为Windows Phone 7编译的应用程序中包含桌面WPF引用(请参阅MSDN上的supported platforms)。
你最好重写那段代码(或者用一个反编译器“抓住”它来保持命名空间不变,以防有一天它会被发送到Portable Library)。