About 7,870,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. 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 …

  3. 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 …

  4. CommunityToolKit.Mvvm 8.4.0 and MVVM Toolkit warning …

    Dec 19, 2024 · 6 I created a new .net 9.0 maui project and reproduced your problem with the CommunityToolKit.Mvvm version 8.4.0. And you can get rid of the warning by the following two …

  5. wpf - Good examples of MVVM Template - Stack Overflow

    I am currently working with the Microsoft MVVM template and find the lack of detailed examples frustrating. The included ContactBook example shows very little Command handling and the …

  6. 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.

  7. How to Disable and Enable Button in C# WPF using MVVM

    Jan 5, 2022 · 2 Since you need the MVVM approach, the ideal way would be to set the DataContext of the View/UserControl to the instance of the ViewModel (tell me if you want how …

  8. WPF OpenFileDialog with the MVVM pattern? - Stack Overflow

    Oct 25, 2009 · I just started learning the MVVM pattern for WPF. I hit a wall: what do you do when you need to show an OpenFileDialog? Here's an example UI I'm trying to use it on: When the …

  9. Newest 'mvvm' Questions - Stack Overflow

    Oct 29, 2025 · I'm learning about Flutter, and I have questions about implementing an MVVM architecture. I'm uncertain how to handle the initialization logic for the ViewModel, particularly …

  10. 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 …