Example #1
0
 private void OnAlertCloseComplete(AlertClose result)
 {
     if (AlertCloseComplete != null)
     {
         AlertCloseComplete.Invoke(this, result);
     }
 }
Example #2
0
 private void OnAlertCloseComplete()
 {
     if (AlertCloseComplete != null)
     {
         AlertCloseComplete.Invoke(null, new AlertClose());
     }
 }
Example #3
0
 void AlertDialog_CancelEvent(object sender, EventArgs e)
 {
     if (AlertCloseComplete != null)
     {
         AlertCloseComplete.Invoke(null, new AlertClose());
     }
 }
Example #4
0
 private void OnAlertCloseComplete(AlertClose args)
 {
     if (AlertCloseComplete != null)
     {
         AlertCloseComplete.Invoke(this, args);
     }
 }