Top "Mvvm" questions

Model-View-ViewModel (MVVM) is an architectural design pattern for implementing user interfaces that separates the UI (the View) from its data (the Model) via its presentation logic (its ViewModel).

Binding a WPF ShortCut Key to a Command in the ViewModel

I have a WPF app that is using the MVVM pattern. Hooking up buttons to the VM is pretty straight …

data-binding mvvm shortcuts
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 …

c# mvvm inotifypropertychanged
Android ViewModel additional arguments

Is there a way to pass additional argument to my custom AndroidViewModel constructor except Application context. Example: public class MyViewModel …

android mvvm viewmodel android-components
Vue JS Watching deep nested object

Disclaimer: This is my first attempt at building an MVVM app I have also not worked with vue.js before, …

javascript mvvm vue.js
Managing multiple selections with MVVM

On my journey to learning MVVM I've established some basic understanding of WPF and the ViewModel pattern. I'm using the …

c# .net data-binding mvvm
MVVM Light Messenger - Sending and Registering Objects

Could somebody be kind enough to give me an example of how to Send and Register custom objects between classes …

mvvm mvvm-light
Set BindingContext to ViewModel in XAML on Xamarin.Forms

I want to develop a simple project with Xamarin.Form and MVVM. In my solution (named XamarinPOC) i have (in …

c# xaml mvvm xamarin.forms binding-context
Trigger Filter on CollectionViewSource

I am working on a WPF desktop application using the MVVM pattern. I am trying to filter some items out …

wpf xaml mvvm filter collectionviewsource
Binding the Loaded event?

I am trying to display a login window once my MainWindow loads while sticking to the MVVM pattern. So I …

c# wpf data-binding mvvm loaded
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 …

wpf mvvm openfiledialog