コード例 #1
0
 public void Remove(notificationObject existingnotificationObject)
 {
     if (notifications.Contains(existingnotificationObject))
     {
         notifications.Remove(existingnotificationObject);
         OnPropertyChanged("notifications");
     }
 }
コード例 #2
0
 public void Add(notificationObject newnotificationObject)
 {
     notifications.Add(newnotificationObject);
     OnPropertyChanged("notifications");
 }