Rect,在哪里?

时间:2016-10-20 11:23:18

标签: c# rect

这让我发疯,创建新的控制台应用程序项目,然后

// 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会怎样?

1 个答案:

答案 0 :(得分:7)

您应该添加WindowsBase.dll作为项目的参考。