Visual Studio 2017想要引用已使用其他程序集引用的内容

时间:2018-10-02 18:48:07

标签: c# visual-studio

我很难在Visual Studio 2017中查找此错误的原因。错误在这里:

enter image description here

我显然是在为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; }
    }

对于为什么发生这种情况的任何反馈将不胜感激!

0 个答案:

没有答案