我很难在Visual Studio 2017中查找此错误的原因。错误在这里:
我显然是在为Brush使用System.Drawing程序集,但它似乎仍然需要System.Drawing.Common程序集。这是它所引用的简单属性(我在本地添加了System.Drawing而不是“ using”,只是为了确保它绝对引用了正确的程序集):
private System.Drawing.Brush brush_ = System.Drawing.Brushes.Black;
public System.Drawing.Brush PBrush
{
get { return brush_; }
set { brush_ = value; }
}
对于为什么发生这种情况的任何反馈将不胜感激!