Example #1
0
 //Action to run for edit item button in dialog
 void manageAccountDialog_deleteItemComplete(object send, OnSignEventArgs_AccountManagement e)
 {
     Thread thread = new Thread(deleteRequest);
     thread.Start();
 }
Example #2
0
 //Add Button
 //Action to run for add item button in dialog
 void manageAccountDialog_addItemComplete(object sender, OnSignEventArgs_AccountManagement e)
 {
     Thread thread = new Thread(ActLikeRequest);
     thread.Start();
 }