Do I need a view controller for MVVM-light in Silverlight?
- by Stefan de Vogelaere
I have the following question regarding MVVM light: what "drives" the UI? I see I can have a ViewModel per View I am showing; the ViewLocator handles all the ViewModels (for caching as I understand). But what is driving the UI?
If I have a Command defined in my ViewModel that says "ShowDetail"; do I have to write the code for displaying this View inside the ViewModel?
Are there any examples of this? Thanks!