MVP 模式是每个 winforms 应用程序的最佳方式吗?
我想开发关于存储有关书籍的一些信息的应用程序,我想使用 MVP 模式 - 但我有一些疑问,这种模式是否始终是开发中小型 winform 应用程序的最佳实践,或者也许没有必要?
附注我想使用微软的Smart Client Factory,winforms中有MVP的框架吗?
预先感谢所有想法
i would like develop application about storing some information about books, i would like use MVP pattern - but i have some doubts if this pattern is always best practise for developing small/mid winform apps or maybe is not necessary?
ps. I would like use Smart Client Factory from Microsoft, is there any framework for MVP in winforms?
thanks in advance for all ideas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有一种模式适合所有应用程序。对于交互更多的应用,我更喜欢MVVM模式。 MVVM 通常保留用于 WPF 和 Silverlight,但可以在 Windows 窗体中通过更新控件 框架。
No one pattern is best for every app. For more interaction applications, I prefer the MVVM pattern. MVVM is usually reserved for WPF and Silverlight, but it's possible to use MVVM in Windows Forms with the Update Controls framework.