About 17,400,000 results
Open links in new tab
  1. What is the difference between MVC and MVVM? - Stack Overflow

    Is there a difference between the standard "Model View Controller" pattern and Microsoft's Model/View/ViewModel pattern?

  2. MVVM: Tutorial from start to finish? - Stack Overflow

    For something released a little more recently (last month), take a look at Rainer Stropek's video series MVVM in WPF and Silverlight He flies right through it, but does an extremely good job of going from …

  3. c# - Why use MVVM? - Stack Overflow

    Apr 16, 2010 · MVVM guides us how to distribute responsibilities between classes in a GUI application. ViewModel projects the data from the Model into a format that fits the View.

  4. C# MVVM Where Does the Service Layer Sit? - Stack Overflow

    The mindset of MVVM is to separate in a loosely coupled manner layers, allowing each to be modified and tested without interfering with the other. You test the ViewModel and mock the Models.

  5. Basic concepts of MVVM-- what should a ViewModel do?

    Trying to grasp the concepts of MVVM, I have already read several blogs and looked at a few projects. From what I understand, a View is dumb, it just knows how to present something that is passed ...

  6. c# - Project structure for MVVM in WPF - Stack Overflow

    What is the project structure you end up with when using MVVM in WPF? From the tutorials I saw now, they usually have folders: Model, ViewModel and View. In Model you put classes like Person for

  7. How to handle the SelectionChanged event of ComboBox with MVVM …

    Dec 29, 2011 · How to raise / handle the SelectionChanged event of WPF's ComboBox using the MVVM pattern? Explain in detail please I am new to WPF. What I want, is to do some operations when the …

  8. c# - MVVM : Share data between ViewModels - Stack Overflow

    How do I share data between multiple ViewModels ? For example there is a class named Project in application . public class Project : ModelBase { private string _projectName; public

  9. Why MVVM and what are it's core benefits? [duplicate]

    Why we go for MVVM over MVC or MVP while dealing with WPF? What extra benefit we get by using this? Edit: To be honest , today I had an interview and I have been asked this question. I answered ...

  10. c# - WPF MVVM navigate views - Stack Overflow

    I have a WPF application with multiple views. I want to switch from view 1 to view 2 and from there I can switch to multiple views. So I want a button on view 1 that loads view2 in the same window....