public NotificationManagerViewModel(NotificationManager model)
 {
     _managerModel = model;
     _managerModel.RecievedSignal += _managerModel_RecievedSignal;
     Items = new ObservableCollection<NotificationStreamViewModel>();
     PropertyChanged += NotificationManagerViewModel_PropertyChanged;
 }
示例#2
0
文件: Account.cs 项目: jak180/Metrooz
 public Account(IPlatformClientBuilder setting)
 {
     Builder = setting;
     Stream = new StreamManager(this);
     Notification = new NotificationManager(this);
 }