Beispiel #1
0
 public bool CheckForEnd <T>(IEnumerable <T> items)
 {
     HelperMethods.DisableIndeterminateProgressBar(progressBar);
     if (items.Count() == 0)
     {
         endOfList        = true;
         currentlyLoading = false;
         return(true);
     }
     return(false);
 }
Beispiel #2
0
 public void EndLoading(int offset)
 {
     Offset          += offset;
     currentlyLoading = false;
     HelperMethods.DisableIndeterminateProgressBar(progressBar);
 }