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