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.DataPreprocessing.Views/3.4/DataPreprocessingView.cs

    r16311 r16317  
    220220          if (storable != null) {
    221221            try {
    222               Progress.ShowMarquee(Content, "Exporting data.");
     222              Progress.Show(Content, "Exporting data.", ProgressMode.Indeterminate);
    223223              ContentManager.Save(storable, saveFileDialog.FileName, compressed);
    224224            } finally {
     
    241241          try {
    242242            var problemData = Content.CreateNewProblemData();
    243             Progress.ShowMarquee(Content, "Exporting data.");
     243            Progress.Show(Content, "Exporting data.", ProgressMode.Indeterminate);
    244244            if (problemData is TimeSeriesPrognosisProblemData)
    245245              Export(new TimeSeriesPrognosisCSVInstanceProvider(), problemData, saveFileDialog.FileName);
Note: See TracChangeset for help on using the changeset viewer.