示例#1
0
 private void DownloadAnchor()
 {
     isBusy = true;
     anchorController.DownloadAnchor((bool success, string error) =>
     {
         isBusy = false;
         if (success)
         {
             cursorController.ShowInfo("Download Anchor Success!");
         }
         else
         {
             cursorController.ShowInfo(error);
         }
     });
 }
示例#2
0
 private void DownloadAnchor()
 {
     anchorController.DownloadAnchor(DownloadAnchorFinish);
 }