Esempio n. 1
0
 public void Detach(NotifyChangeEventHandler ohandler)
 {
     this.NotifyChanged -= ohandler;
 }
Esempio n. 2
0
 public void UnRegister(NotifyChangeEventHandler handler)
 {
     this.Detach(handler);
 }
Esempio n. 3
0
 public void Attach(NotifyChangeEventHandler ohandler)
 {
     this.NotifyChanged += ohandler;
 }
Esempio n. 4
0
 public void Register(NotifyChangeEventHandler handler)
 {
     this.Attach(handler);
 }