缺少 ObservableCollection(T)
我正在 WPF 和 MVVM 上进行实验,在 Vb.net 上编码 ViewModel 时,我注意到 ObservableCollection(of T)s T_T 下有这条红色波浪线。
无论如何,该应用程序位于 WPF & 中。 VB.Net,在.Net Framework 3.5(我检查过)下,我的类顶部有一个“Imports System.Collections.ObjectModel”。 Intellisense 显示 System.Collections.ObjectModel 上除 ObservableCollection 之外的其他类。
这是屏幕截图。
那么,为什么 ObservableCollection(of T) 缺失以及如何让它出现? :( 提前致谢。
I'm doing an experiment on WPF and MVVM, and while coding the ViewModel on Vb.net I noticed this red wavy lines under my ObservableCollection(of T)s T_T
Anyway, the application is in WPF & VB.Net, under the .Net Framework 3.5 (I checked) and I have an 'Imports System.Collections.ObjectModel' on top of my class. Intellisense shows the other classes on System.Collections.ObjectModel except ObservableCollection.
Here's a screenshot.
So, why is ObservableCollection(of T) missing and how do I make it appear? :( Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加对 WindowsBase 的引用。 System.Collections 中的某些元素位于 mscorlib 中,但 WPF 特定的内容(例如 ObservableCollection)位于 WindowsBase.dll 中,
我知道这令人困惑:-)
You need to add a reference to WindowsBase. Some elements in System.Collections live in mscorlib, but the WPF specific things like ObservableCollection live in WindowsBase.dll
Confusing I know :-)