Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm attempting to inherit from the WeakEventManager class but the namespace can't be found in my project. I'm not sure what's going on as I have the using System.Windows; directive. I can load a project that uses this class successfully I just can't seem to implement it on my own. The project is .Net 4.5 and I'm unsure as to what's happening.

Any help is appreciated. Thanks in advanced.

share|improve this question

2 Answers

up vote 1 down vote accepted

The class lives in the System.Windows namespace, but is defined in the WindowsBase assembly. Make sure you have imported the WindowsBase assembly and added it as a reference to your project.

share|improve this answer
I've attempted this with no sucesss. – Keith Jan 22 at 19:26
Have you tried adding it as a reference? – SimpleCoder Jan 22 at 19:31
What I ended up doing was adding the .dll from the .Net 4.5 directory and that seems to have worked. – Keith Jan 22 at 19:37
Hmm that's strange. Glad it worked. Are you using 4.5 for your entire project? – SimpleCoder Jan 22 at 19:40
I've selected 4.5 on project creation. The odd thing was when I went to add my references what was listed was 4.0. I'm not sure what was going on. But I know it was 4.5 because you can't use System.Windows; by default on 4.0 projects. I think I may do a repair install of Visual Studio. – Keith Jan 22 at 19:42

In Solution Explorer

  1. open your project
  2. right-click on References
  3. click Add Reference
  4. select .NET tab
  5. select System.Windows
  6. click OK
share|improve this answer
I did that initially and I still have the same results. – Keith Jan 22 at 19:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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