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