protected virtual void OnMyCustomClickEvent(MyCustomeEventArgs e)
 {
     if (MyCustomClickEvent != null)
     {
         MyCustomClickEvent(this, e);
     }
 }
Ejemplo n.º 2
0
 public void HandleCustomEvent(object sender, MyCustomeEventArgs e)
 {
     GetAllItemsByRegistrantID(e.SearchID);
 }