I do not like having Controller-related code (understand ICommand stuff) in my ViewModel in WPF. Is there a framework to separate it and getting back to good old MVC for开发者_运维百科 WPF?
I would like to get : - a view in XAML - a view model - a model - command handlers
Caliburn supports the MVC pattern according to the documentation. I should add a disclaimer that I've only ever used Caliburn in an MVVM context so I can't vouch for its MVC capabilities personally, but I imagine it is worth investigating.
ViewModel with MVC/Navigation in Silverlight
精彩评论