Esempio n. 1
0
 void OnCancel()
 {
     Close();
     mResult = EMUN_MSG_RESULT.CANCLE;
     mClose  = true;
     if (mCancelCallback != null)
     {
         mCancelCallback();
     }
     mCancelCallback = null;
     handleCancel();
 }
Esempio n. 2
0
 void OnOK()
 {
     Close();
     mResult = EMUN_MSG_RESULT.OK;
     mClose  = true;
     if (mOkCallback != null)
     {
         mOkCallback();
     }
     mOkCallback = null;
     handleOK();
 }