Prism IEventAggregator依赖注入 模块间通信
程序员文章站
2022-06-08 18:40:53
...
prism使用依赖注入的方式获取IEventAggregator,以此来获取继承自CompositePresentationEvent的事件。
- 使用Import导入IEventAggregator
[Import]
protected IEventAggregator _eventAggregator = null;
- 实例化EventAggregator()
public IEventAggregator eventAggregator;
eventAggregator = new EventAggregator();
订阅发布
EventAggregator.GetEvent<T>().Subscribe()
EventAggregator.GetEvent<T>().Publish()
上一篇: Angular 2用户输入