Beispiel #1
0
 public void RemoveWatch(Watch watch)
 {
     Watchs.Remove(watch);
     NotifyWatchChange();
 }
Beispiel #2
0
 public void RemoveAllWatches()
 {
     Watchs.Clear();
     NotifyWatchChange();
 }
Beispiel #3
0
 public void AddWatch(Watch watch)
 {
     Watchs.Add(watch);
     NotifyWatchChange();
 }