Prism(.NET)核心功能

发布于 2024-10-11 06:45:46 字数 29 浏览 2 评论 0原文

Prism(.NET)框架的核心功能有哪些?

What are the core functions of Prism(.NET) Framework?

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

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

发布评论

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

评论(2

活雷疯 2024-10-18 06:45:46

基本上,Prism 以示例、文档和可重用组件的形式为您提供指导,以模块化的方式构建应用程序,遵循设计模式(例如 MVVM),这应该使您能够拥有更可维护和可测试的代码。

所以这听起来可能有点抽象;也许在阅读了文档中的一些章节并检查了快速入门之后,您会有一个更清晰的视角。

总而言之,如果您计划使用 WPF/Silverlight,并且您有兴趣使用经过验证的模式开发高质量代码而不需要重新发明轮子,那么 Prism 可能是您的不错选择:)

希望这会有所帮助!

Basically Prism provides you with guidance in the form of examples, documentation and reusable components to build applications in a modularized way, following design patterns (such as MVVM), which should enable you to have more maintainable and testable code.

So this might sound a little bit abstract; perhaps after reading some chapters in the documentation and checking the QuickStarts you will have a clearer perspective.

All in all, if you're planning to use WPF/Silverlight, and you're interested in developing high quality code using proven patterns without reinventing the wheel, then Prism might be a good choice for you :)

Hope this helps!

鹿! 2024-10-18 06:45:46

首先,Prism 不适用于小型应用程序,它是一个有助于以松散耦合方式管理 WPF 或 Silverlight 应用程序的框架。通过使用 Prism,我们可以在包含区域的 shell 中获得模块视图。
因此,通过合并 Prism,我们可以为我们的应用程序提供更好的管理能力,这允许独立的代码开发、测试、模块可扩展性、通过依赖注入器等将模块的依赖关系分离到单独的中心类。
您可以查看 http://msdn。 microsoft.com/en-us/library/ff921141(v=PandP.40).aspx

First of all Prism is not for the small applications, it is a framework which helps in managing WPF or Silverlight applications in a loosely coupled way. By using Prism we can have views of Modules, in the shell which contanis regions.
So by incorporating Prism we can have a better managing abilities for our application, this allows the independent code development, testing, modules expandibility, seperation of dependency from modules onto the seperate central class via dependency injectors etc.
You can have a look at http://msdn.microsoft.com/en-us/library/ff921141(v=PandP.40).aspx

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