示例#1
0
 private void NetworkingEvents_PasswordChangeResultEvent(Networking.Data.ResponseCodes.GenericResponse response)
 {
     this.Invoke(new Action(() =>
     {
         MessageBox.Show("Password changed " + response.ToString());
     }));
 }
示例#2
0
 private void NetworkingEvents_AccountUpdatedResultEvent(Networking.Data.ResponseCodes.GenericResponse response)
 {
     this.Invoke(new Action(() =>
     {
         MessageBox.Show("Account updated " + response.ToString());
     }));
 }