“的ObservableCollection”不能用“System.Collections.Obje

2019-09-22 22:19发布

System.Collections.ObjectModel被包括在内。 的Visual Studio 2012还称Type or namespace name 'ObservableCollection' could not be found.

类似这样的问题

码:

class ObservableClass : ObservableCollection<OtherClass>
{
}

编辑:这是.NET Framework 3.5的,是一个控制台应用程序

Answer 1:

你可能缺少程序集引用...这取决于框架您的目标,这个类可能会发现:

  • 在WindowsBase.dll(.NET 3.X)
  • 在System.dll中(.NET 4.x的)
  • 在System.Windows.dll中(的Silverlight / Windows Phone 7的)
  • 在System.ObjectModel.dll(WinRT中)(包含在 “.NET的Windows Store应用程序”)


文章来源: 'ObservableCollection' could not be found even when using 'System.Collections.ObjectModel'