原文链接:WPF Apps With The Model-View-ViewModel Design Pattern
要点:M-V-VM 是建立在 WPF 平台上,若不是用 WPF ,则该模式不适用。利用 WPF data binding/command binding 实现,数据与 UI 完全分离。最大的卖点之一是对UI可以进行 unit test,因为 UI 只是对 ViewModel 的 binging,所以可以只对 ViewModel 进行 unit test,即相当于对 UI 进行 unit test。
原文链接:Simplifying the WPF TreeView by Using the ViewModel Pattern