摘要: MVC:用户的请求首先会到达Controller,由Controller从Model获取数据,选择合适的View,把处理结果呈现到View上;MVP:用户的请求首先会到达View,View传递请求到特定的Presenter,Presenter从Model获取数据后,再把处理结果通过接口传递到View。MVVM:立足于原有MVP框架并且把WPF的新特性(数据绑定DataBind、依赖属性Dependency Property、路由事件Routed Events、命令Command等...)揉合进去。 阅读全文
posted @ 2010-10-28 16:47 CopyPaster 阅读(873) 评论(0) 推荐(0) 编辑