WPF 文档处理?
WPF 是否提供了处理文档的框架,类似于 MFC 的文档/视图?
在我的 WPF 应用程序中,我可以在菜单中创建 File->New/Open/Save 元素并将它们附加到方法,但我想知道 WPF 是否提供了任何东西来管理它一个更好的方法。
Does WPF provide a framework for handling documents, similar to how MFC's Document/View?
In my WPF application, I can go and just create File->New/Open/Save elements in the menu and attach them to methods, but I'm wondering if WPF provides anything to manage that in a better way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
主要发布的指南是使用模型/视图/视图模型模式。
我建议您观看关于 MVVM 的第 9 频道视频。
模式和实践小组还发布了WPF 和 Silverlight 复合应用程序指南,其中包括可以使用的完整库。 不过,对于许多应用程序来说,它相当重。
本指南的最新版本是 Prism 库。
The main published guidelines is to use the Model/View/ViewModel pattern.
I'd recommend watching this Channel 9 video on MVVM.
The Patterns and Practices group also published the Composite Application Guideance for WPF and Silverlight, which includes a full library that can be used. It's fairly heavy-weight, though, for many applications.
The latest version of this guidance is the Prism Library.