Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/22/18 12:37:04 (5 years ago)
Author:
pfleck
Message:

#2845 Combined separate Show methods into single one with enum parameter specifying the ProgressMode. Renamed Continuous and Marquee to Determinate and Indeterminate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2845_EnhancedProgress/HeuristicLab.Optimizer/3.3/StartPage.cs

    r16311 r16317  
    8888
    8989    private void LoadSamples(object state) {
    90       progress = Progress.Show(samplesListView, "Loading...");
     90      progress = Progress.ShowOnControl(samplesListView, "Loading...");
    9191      try {
    9292        var assembly = Assembly.GetExecutingAssembly();
     
    112112        OnAllSamplesLoaded();
    113113      } finally {
    114         Progress.Hide(samplesListView);
     114        Progress.HideFromControl(samplesListView);
    115115      }
    116116    }
Note: See TracChangeset for help on using the changeset viewer.