C# - 无法实现“INotifyDataErrorInfo”

时间:2015-10-01 04:55:43

标签: c# interface inotifydataerrorinfo

我有一个c#类。

  class MyClass: AnotherClass, INotifyDataErrorInfo
  {
           ..................             
  }

我也需要实现“INotifyDataErrorInfo”接口。但它有红色,并没有识别界面的命名空间。 我添加了“using System.ComponentModel;”太。 但它不起作用。

有谁知道为什么会这样?

enter image description here

1 个答案:

答案 0 :(得分:1)

INotifyDataErrorInfo位于程序集System.ComponentModel的名称空间System中。确保源代码中包含using System.ComponentModel;,项目(.csproj)引用System.dll