如何使用mvc创建Windows应用程序

发布于 2024-11-02 09:49:46 字数 37 浏览 2 评论 0原文

hii 是否可以使用 mvc 创建 Windows 应用程序

hii is it possible to create windows application with mvc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

笛声青案梦长安 2024-11-09 09:49:46

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

看春风乍起 2024-11-09 09:49:46

仅将用户界面代码保留在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文