博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《Prism 5.0源码走读》 设计模式
阅读量:6341 次
发布时间:2019-06-22

本文共 800 字,大约阅读时间需要 2 分钟。

Prism或Prism构建的应用程序时会使用大量的设计模式,本文简要列举Prism相关的那些设计模式。

  • Adapter(适配器模式):Prism Library主要在Region和IoC container应用Adapter模式。
    1. ContentControlRegionAdapter.cs
    2. ItemsControlRegionAdapter.cs
    3. SelectorRegionAdapter.cs
    4. UnityServiceLocatorAdapter.cs
    5. MefServiceLocatorAdapter.cs
  • Application Controller Pattern: 这个我们在应用程序中经常应用于控制View切换和跳转,减少event的数量。
  • Factory Pattern: Prism里面使用工厂模式来创建Region behavior.
  1. RegionBehaviorFactory.cs
  • Command Pattern:
  • Dependency Injection Pattern:
  • Event Aggregator Pattern:
  • Facada Pattern:
  • Inversion of Control Pattern:
  • Observer Pattern:
  • Model-View-ViewModel Pattern:
  • Registry Pattern:
  • Service Locator Pattern:
  • Separated Interface and Plug-in
  • Composite and Composite View

下图是设计模式在Prism结构设计中的应用:

 

编辑记录:

2014.08.11 初始版本

2014.08.12 加入Factory Pattern

 

转载于:https://www.cnblogs.com/codesee/p/3905792.html

你可能感兴趣的文章
/etc/fstab功能详解
查看>>
oracle高速缓存机制
查看>>
使用ntpdate更新系统时间
查看>>
Android M 特性 Doze and App Standby模式详解
查看>>
IE FF(火狐) line-height兼容详解
查看>>
谷歌Pixel 3吸引三星用户, 但未动摇iPhone地位
查看>>
python获取当前工作目录
查看>>
VUE中使用vuex,cookie,全局变量(少代码示例)
查看>>
grep -w 的解析_学习笔记
查看>>
量化交易之启航
查看>>
TX Text Control文字处理教程(3)打印操作
查看>>
CENTOS 7 如何修改IP地址为静态!
查看>>
MyCat分片算法学习(纯转)
查看>>
IO Foundation 3 -文件解析器 FileParser
查看>>
linux学习经验之谈
查看>>
mysqld_multi实现多主一从复制
查看>>
中介模式
查看>>
JS中将变量转为字符串
查看>>
servlet笔记
查看>>
JVM(五)垃圾回收器的前世今生
查看>>