缺少 ObservableCollection(T)

发布于 2024-08-07 06:58:47 字数 483 浏览 5 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2024-08-14 06:58:47

您需要添加对 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 :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文