I learning WPF MVVM pattern for couple of weeks already. I still don't have clear understanding of this pattern.
I've read this topic What applications could I study to understand (Data)Model-View-ViewModel? and almost all referenced articles.
The problem with all examples is that they have "a lot of extra stuff" (menus, several views etc. etc.) It's good when you need to learn how to do complex things, but it is not good when you looking for something you can start with.
I would like to have an application which I can use as skeleton to build my own application. I.e. I would like to see an application which has only absolutely mandatory things, that would be I suppose:
- Main window
- Model class
- ViewModel class
- View class
- some ICommand implementation? (am I need something like that)?
- probably I'm missing something