在我的窗口(不是主窗口)构造函数中,倾斜说明了一切
EventAggregator.OnUserLoggedIn += OnUserLoggedIn;
EventAggregator.OnUserLoggedOff += OnUserLoggedOff;
有区别吗
this.Close()
和
EventAggregator.OnUserLoggedIn -= OnUserLoggedIn;
EventAggregator.OnUserLoggedOff -= OnUserLoggedOff;
this.Close()
我读过关闭窗口会处理所有未管理的资源,这些事件被认为是管理的还是未管理的?