欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Prism IEventAggregator依赖注入 模块间通信

程序员文章站 2022-06-08 18:40:53
...

prism使用依赖注入的方式获取IEventAggregator,以此来获取继承自CompositePresentationEvent的事件。

  1. 使用Import导入IEventAggregator
[Import]
protected IEventAggregator _eventAggregator = null;
  1. 实例化EventAggregator()
 public IEventAggregator eventAggregator;
 eventAggregator = new EventAggregator();

订阅发布

EventAggregator.GetEvent<T>().Subscribe()
EventAggregator.GetEvent<T>().Publish()

链接:IEventAggregator