Model View ViewModel (MVVM) is an architectural design pattern that separates the page (the View) from the data (the Model) by way of its presentation logic (its ViewModel). This pattern is often used in XAML development (WPF, Silverlight, WP7, and Windows 8 Metro) and more recently in JavaScript (using data binding from libraries such as Knockout).
234
votes
23answers
82k views
MVVM: Tutorial from start to finish? [closed]
I'm a C#/Windows Forms programmer with more than 5 years experience. I've been investigating WPF using the MVVM (Model-View-ViewModel) design pattern. I have searched the Internet for tutorials. I ...
111
votes
13answers
20k views
What framework for MVVM should I use?
I am developing an application with the MVVM model, but I have reached a point where I need to choose which framework to use.
Among the possible options are:
MVVM Toolkit
MVVM Foundation
WPF ...
110
votes
14answers
21k views
INotifyPropertyChanged vs. DependencyProperty in ViewModel
When implementing the ViewModel in a Model-View-ViewModel architecture WPF application there seem to be two major choices how to make it databindable. I have seen implementations that use ...
98
votes
18answers
37k views
Handling Dialogs in WPF with MVVM
In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does not know anything about the view, dialog communication can be interesting. I can expose ...
88
votes
12answers
24k views
What is the difference between MVC and MVVM?
Is there a difference between the standard "Model View Controller" pattern and Microsoft's Model/View/ViewModel pattern?
72
votes
15answers
32k views
WPF MVVM Newbie - how should the ViewModel close the form?
I'm trying to learn WPF and the MVVM problem, but have hit a snag.
This question is similar but not quite the same as this one (handling-dialogs-in-wpf-with-mvvm)...
I have a "Login" form ...
55
votes
7answers
16k views
Good examples of MVVM Template
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 only other ...
53
votes
9answers
13k views
What MVVM framework are you using?
I am looking to write a WPF app and am trying to pick a MVVM framework to handle some of the complexity. What would you recommend and where can I find a good tutorial/getting started guide for said ...
48
votes
11answers
9k views
What applications could I study to understand (Data)Model-View-ViewModel? [closed]
I understand the basics of the Model-View-ViewModel pattern or as Dan Crevier calls it the DataModel-View-ViewModel pattern and I understand that it is a good approach to design WPF based ...
44
votes
6answers
2k views
MVVM Madness: Commands
I like MVVM. I don't love it, but like it. Most of it makes sense. But, I keep reading articles that encourage you to write a lot of code so that you can write XAML and don't have to write any code in ...
43
votes
12answers
7k views
In MVVM should the ViewModel or Model implement INotifyPropertyChanged?
Most MVVM examples I have worked through have had the Model implement INotifyPropertyChanged, but in Josh Smith's CommandSink example the ViewModel implements INotifyPropertyChanged.
I'm still ...
41
votes
13answers
44k views
Good Silverlight-MVVM Practice Example
I've read a number of good articles about the Model-View-ViewModel pattern and my team intends to implement this pattern in the latest version of our app. I still don't quite get ALL the bits that go ...
36
votes
8answers
2k views
Is MVVM pointless?
Is orthodox MVVM implementation pointless? I am creating a new application and I considered Windows Forms and WPF. I chose WPF because it's future-proof and offer lots of flexibility. There is less ...
36
votes
13answers
20k views
Should I use the Model-View-ViewModel (MVVM) pattern in Silverlight projects?
One challenge with Silverlight controls is that when properties are bound to code, they're no longer really editable in Blend. For example, if you've got a ListView that's populated from a data feed, ...
34
votes
7answers
113k views
Binding WPF ComboBox to a Custom List
I have a ComboBox that doesn't seem to update the SelectedItem/SelectedValue.
The ComboBox ItemsSource is bound to a property on a ViewModel class that lists a bunch of RAS phonebook entries as a ...
33
votes
7answers
1k views
Does MVVM violate DRY?
It seems that ViewModels that I make look suspiciously like other classes and they seem to require a lot of code repetition, e.g. in a current project I have:
SmartForm: Model that represents a data ...
32
votes
7answers
17k views
Firing a double click event from a WPF ListView item using MVVM
In a WPF application using MVVM, I have a usercontrol with a listview item. In run time, it will use databinding to fill the listview with a collection of objects.
What is the correct way to attach a ...
31
votes
2answers
4k views
How to architecture a webapp using jquery-mobile and knockoutjs
I would like to build a mobile app, brewed from nothing more but html/css and JavaScript. While I have a decent knowledge of how to build a web app with JavaScript, I thought I might have a look into ...
31
votes
10answers
7k views
Are there any good books on M-V-VM in WPF? [closed]
I've seen a lot of book recommendations for WPF here, but no witch is specific to MVVM.
29
votes
9answers
20k views
SelectedItem in a WPF Treeview
How can I retrieve the item that is selected in a WPF-treeview? I want to do this in XAML, because I want to bind it.
You might think that it is SelectedItem but apparently that does not exist is ...
28
votes
3answers
18k views
MVVM Routed and Relay Command
What is the Difference between the RoutedCommand and RelayCommand ?
When to use RoutedCommand and when to use RelayCommand in MVVM pattern ?
26
votes
3answers
2k views
MVVM Light: how to unregister Messenger
I love the MVVM Light's Messenger and its flexibility, however I'm experiencing memory leaks when I forget to explicitly unregister the recipients (in Silverlight 4).
The cause is explained here, but ...
26
votes
10answers
9k views
MVVM best practice to pass Dispatcher to the ViewModel
I suppose to be able to access the Dispatcher that belongs to the View I need to pass it to the ViewModel. Bu the View should not known anything about the ViewModel so how do you pass it? Introduce an ...
25
votes
8answers
12k views
MVVM Light Toolkit samples
Does anyone know opensource WPF applications created using MVVM Light Toolkit? Or any samples?
25
votes
4answers
2k views
Should the MVVM ViewModel perform type conversion/validation?
We're just getting into MVVM in WPF.
We have implemented our ViewModels with 'strongly typed' properties (int, double? etc.) that we bind to in the view.
Type conversion works OK, mostly, and so ...
25
votes
11answers
3k views
One sentence explanation to MVVM in WPF?
I heard its the next best thing in building WPF UIs, but all existing
examples have dozens of lines of code - can I get a Hello World
for MVVM that explains in no uncertain terms what its all about?
...
21
votes
4answers
3k views
Prism v4: Unity or MEF?
I downloaded Prism v4 and ran the installer. I went into the directory and ran the two following batch files:
Desktop only - Open Modularity With Mef QuickStart.bat
Desktop only - Open Modularity ...
20
votes
4answers
4k views
Pushing read-only GUI properties back into ViewModel
I want to write a ViewModel that always knows the current state of some read-only dependency properties from the View.
Specifically, my GUI contains a FlowDocumentPageViewer, which displays one page ...
20
votes
5answers
10k views
Making sure OnPropertyChanged() is called on UI thread in MVVM WPF app
In a WPF app that I'm writing using the MVVM pattern, I have a background process that doing it's thing, but need to get status updates from it out to the UI.
I'm using the MVVM pattern, so my ...
19
votes
3answers
9k views
WPF OpenFileDialog with the MVVM pattern?
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 browse button is ...
19
votes
6answers
7k views
WPF MVVM Focus Field on Load
I have a View that has a single TextBox and a couple Buttons below it. When the window loads I want that TextBox to have focus.
If I was not using MVVM I would just call TextBox.Focus() in the ...
19
votes
3answers
8k views
MVVM radiobuttons
Someone please help. I have an interesting issue. I am trying to implement an MVVM app and I want to bind to radiobuttons in my view.
Here's my view:
<StackPanel Orientation="Horizontal" ...
19
votes
8answers
2k views
WPF — Where do you draw the line between code and XAML?
I'm a long-time C#/.NET programmer but totally new to WPF and the System.Windows.Controls namespace and XAML. The more I learn about it the more I realize that you can do pretty much all of your GUI ...
18
votes
8answers
3k views
MVVM Sync Collections
Is there a standardized way to sync a collection of Model objects with a collection of matching ModelView objects in C# and WPF? I'm looking for some kind of class that would keep the following two ...
18
votes
2answers
5k views
WPF ControlTemplate vs UserControl
I've recently made an UserControl, which took quite a long time, because I had to work with custom Dependency Properties and so on...
Anyways, it was just a bunch of 3 controls: TextBox, Popup with ...
18
votes
6answers
6k views
Keybinding a RelayCommand
I'm using the RelayCommand in my app. It's great for putting the code in the viewmodel, but how do I bind keystrokes to my command?
RoutedUICommand has its InputGestures property, which makes the ...
17
votes
11answers
2k views
Why use MVVM?
Okay, I have been looking into MVVM pattern, and each time I have previously tried looking into it, I gave up for a number of reasons:
Unnecessary Extra Long Winded Coding
No apparent advantages for ...
17
votes
10answers
3k views
Learning MVVM for WPF
I am now very comfortable with WPF, but I read some articles about MVP and MVVM that find the default project solution ineffective. Then I realized how ineffective it was and how the MVVM pattern is ...
17
votes
4answers
6k views
MVC / MVP / MVVM What the Heck?
I recently worked on a .Net WPF project to build a retail point of sale system where I used the MVP pattern for the first time. It took me a little while to wrap my head around the change of approach ...
17
votes
3answers
7k views
Open File Dialog MVVM
Ok I really would like to know how expert MVVM developers handle an openfile dialog in WPF.
I don't really want to do this in my ViewModel(where 'Browse' is referenced via a DelegateCommand)
...
16
votes
4answers
512 views
WPF without XAML
Architecturally, I think WPF is pretty amazing. In general, I'm a big fan of the underlying rendering/animation inner workings. The flexibility of the templating and styling set up is pretty ...
16
votes
3answers
1k views
Validation: Model or ViewModel
Where should validation reside when using ViewModels with MVC (MVVM), on the Model or the ViewModel? (Or both or neither)? And why? I bring this up especially in light of V2 of ASP.NET MVC coming ...
16
votes
4answers
2k views
Is MVVM possible/viable in a DHTML RIA application (no Silverlight/WPF)?
Note: This is a long winded question and requires a good understanding of the MVVM "design pattern", JSON and jQuery....
So I have a theory/claim that MVVM in DHTML is possible and viable and want to ...
16
votes
4answers
2k views
M-V-VM - Any Examples of using commands in the ViewModel?
I've been developing a very large LOB app using my flavor of M-V-VM which I call M-V-MC (Model-View-ModelController), which is a kind of a combination between M-V-C and M-V-VM. I had posted this ...
15
votes
5answers
678 views
Is there any reason to make POCOs into Model objects?
If I am generating POCO objects from EntityFramework, and using these to go to/from the WCF server, is there any reason to create client-side Models for the Views & ViewModels to use instead of ...
15
votes
4answers
945 views
In MVVM with WPF how to I unit test the link between the ViewModel and the View
In MVVM it is normal to connect View to the ViewModel with data binding.
Therefore if the name of a properties changes on one of the Model objects that is databound to there is no compiler error.
...
15
votes
8answers
7k views
WPF (MVVM): Closing a view from Viewmodel?
Anybody come across a clever way of closing a view in a viewmodel using MVVM?
Maybe there is a way of using binding to signal the view (window) to close?
I would really appreciate any input anyone ...
15
votes
4answers
3k views
M-V-VM Design Question. Calling View from ViewModel
I've just started looking into M-V-VM for a WPF application. Everything makes sense so far besides this particular issue...
I have a ViewModel I'll call Search. This ViewModel binds to a datagrid ...
14
votes
2answers
387 views
When to use events over commands in WPF?
Hi i have recently looked into WPF and started learning about Events and Commands. I typically use Commands on Button clicks which causes a method to Run in my "view model".
Is it possible to make ...
14
votes
3answers
3k views
Good or bad practise for Dialogs in wpf with MVVM?
i lately had the problem of creating add and edit dialogs for my wpf app.
all i want to do in my code was something like this. (I mostly use viewmodel first approach with mvvm)
ViewModel which calls ...