Mediator
直接绑定
Window 一个模块的UI,显示相关Command 该模块需要发送的消息类Proxy 跟服务器通讯类Mediator 该模块需要接受的消息类Window到Command 之间通过消息来连接,因为Window有可能发送并不需要跟服务器打交道的消息Command到Proxy 【直接绑定】,因为该模块需要发送给服务器的请求是固定的Proxy到Mediator 之间通过消息来连接,因为可能有其他Proxy发送消息给MediatorMediator到window 【直接绑定】,因为你这个模块需要接受的消息是固定的。疑问1:怎么在WindowA调用WindowB方法?答:WindowA 直接发送 \"msg\
Proxy
Window
Command
消息