示例#1
0
 public void TaskFinished(CELBase task)
 {
     if (task is CELFindCity)
     {
         CELFindCity find = task as CELFindCity;
         listView1.Items.Clear();
         AddLocationToView(find.Locations);
         findOperation = null;
         listView1.Invoke(new SetSelectionDelegate(SetSelection));
     }
 }
示例#2
0
 public void TaskFinishedSync(CELBase task)
 {
 }
示例#3
0
 public void TaskProgress(CELBase task, double prog)
 {
 }
示例#4
0
 public void TaskStarted(CELBase task)
 {
 }