void getThumbs(string selectedId)
 {
     progressBar.Visible = true;
     statusLabel.Text    = "Downloading thumbs...";
     thumbRetriever.RetrieveThumbs(selectedId);
 }
Exemplo n.º 2
0
 //stop any running threads, clear the thumb panels and
 //start downloading thumbs
 void getThumbs(RomMatch romMatch)
 {
     progressBar.Visible = true;
     statusLabel.Text    = "Downloading thumbs...";
     thumbRetriever.RetrieveThumbs(romMatch);
 }