I am making a prototype in WPF without using MVVM. Now it has got such a size that I will reorganize it to use MVVM.
When I started the project, I jumped straight and created UserControls for many things.
Now I break things down in Views and ViewModels. But, I end up Views that contain UserControls; UserControls have bindings to the objects that are now in the Model.
So, is the concept of UserControls dead in MVVM? I mean, in the past (WinForms, ASP.NET, etc.) you would have a project called "Controls" and reuse. Is the View in MVVM a direct replacement for a typical UserControl?
source share