如何使用mvc创建Windows应用程序
hii 是否可以使用 mvc 创建 Windows 应用程序
hii is it possible to create windows application with mvc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
hii 是否可以使用 mvc 创建 Windows 应用程序
hii is it possible to create windows application with mvc
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
MVP(模型-视图-呈现器)和 MVP-VM(模型-视图-呈现器-视图模型)最常与 WinForms 一起使用。
请参阅SO问题:Windows 窗体的 MVP 示例
Dan Bunea 的博客文章:模型视图演示者
Jeremy D. Miller 的博客文章:“不起眼的对话框”的简单示例
参考:米奇·小麦
MVP (Model-View-Presenter) and MVP-VM (Model-View-Presenter-ViewModel) is used most often with WinForms.
See SO question: MVP examples for Windows Forms
Dan Bunea's Blog Post: Model View Presenter
Jeremy D. Miller's Blog Post: A Simple Example of the "Humble Dialog Box"
Referance: Mitch Wheat
MVC模式:绝对是的!这确实是独立于平台的。
请参阅一些资源:
MVC the pattern: definitely yes! That's platform independent, really.
See some resources:
仅将用户界面代码保留在
Form
对象中。 UI 和数据之间的任何交互或数据操作都应该在其自己的控制器类中。领域对象或数据本身就是模型。Keep only user interface code in the
Form
object(s). Any interaction between the UI and the data or manipulation of the data should go in its own controller class(es). The domain objects or the data itself is the model.阅读http://www.objectmentor.com/resources/articles/TheHumbleDialogBox.pdf 但你可能想看看 WPF 和 MVVM
Read the http://www.objectmentor.com/resources/articles/TheHumbleDialogBox.pdf but you may want to look at WPF and MVVM