vote up 0 vote down star

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.

flag

1 Answer

vote up 2 vote down check

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 :-)

link|flag
^^ Yey~! Thanks! – LantisGaius Oct 8 at 14:07

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.