I'm trying to develop a WPF application - actually it's more a tool - using the MVVM pattern. I've read several articles, watched videos, posted questions but somehow I feel that my approach to or understanding of this MVVM thing is not "the right one".
I'll start from the UI. In a first stage the UI shall display the following:
- Group box with
- text box for the username
- text box for the password (let's ignore the
PasswordBoxfor the start)
- Group box with
- combo box for a list of project names available for this user (will be retrieved from a webservice)
- button "Login" for logging in to the selected project
- button "Logout" for logging out from the current project
So I would identify the following data that need to be handled:
- A string for the username
- A string for the password
- An
ObservableCollection<Project>for the list of projects - A
Projectobject representing the active project - A
booleanif logged in to a project or not
My worries, I have no idea how I should structure or design this following MVVM. How many views, viewmodels and models should I use here? Of course, the application will grow but not this much. Let's stick to the above.

Projectclass so that you can bring it from the server. – HighCore Jan 25 at 20:26