What types of objects should the ViewModel reference in the MVVM pattern?

Posted by Blanthor on Stack Overflow See other posts from Stack Overflow or by Blanthor
Published on 2010-05-14T19:33:07Z Indexed on 2010/05/14 19:44 UTC
Read the original article Hit count: 201

Filed under:
|
|

I've seen quite a few examples of MVVM. I can see that the View should reference the ViewModel. I've seen recently an example of a ViewModel referencing a View, which seems wrong to me, as it would result in tighter coupling. Given that ViewModel is often described as an intermediary between the View and the Model, is there more to the ViewModel than a facade to domain objects? I hope I used the term "facade" correctly here.

© Stack Overflow or respective owner

Related posts about wpf

Related posts about mvvm