WPF: how to build MVVM style User Control?
In WPF we can design user controls, similar to Asp.Net or Winform.
In WPF we have MVVM design pattern, similar to MVC.
But in WPF is it possible to build MVVM style User Control?
I just can't get it - if it's a user control, it could be loaded in the toolbox bar, and drag-n-drop to a WPF page, how can it be MVVM? a WPF page is only a "View", so the user control is also only "View", no "ViewModel", right?
Thanks for your guys' replies. Is there a good simple example that I could read through the codes to understand?