这让我发疯,创建新的控制台应用程序项目,然后
// adding it as reference of course
using System.Windows;
// somewhere in method
var rect = new Rect(1, 2, 3, 4); // no Rect
找不到类型或命名空间名称“Rect”(您是否缺少using指令或程序集引用?)
Rect
会怎样?
答案 0 :(得分:7)
您应该添加WindowsBase.dll
作为项目的参考。