Exemplo n.º 1
0
 private void OnConfirmDialogComplete(ConfirmDialogResult result)
 {
     if (ConfirmDialogComplete != null)
     {
         ConfirmDialogComplete.Invoke(this, result);
     }
 }
Exemplo n.º 2
0
 private void OnConfirmDialogComplete(CommandSelected command, string buttontext, int id)
 {
     if (ConfirmDialogComplete != null)
     {
         ConfirmDialogComplete.Invoke(null, new ConfirmDialogResult(command, buttontext, id));
     }
 }