コード例 #1
0
ファイル: MachinesViewModel.cs プロジェクト: skinny/Rebus
 void AddNotification(NotificationEvent n)
 {
     var notification = new Notification(n.Text, n.Details);
     notifications.Add(notification);
     Messenger.Default.Send(new NotificationAdded(notification));
 }
コード例 #2
0
ファイル: NotificationAdded.cs プロジェクト: JanRou/Rebus
 public NotificationAdded(Notification notification)
 {
     this.notification = notification;
 }