Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/22/18 15:17:42 (5 years ago)
Author:
pfleck
Message:

#2845 Add optional stop and cancel handler to the Show helpers. Replaced the AddProgressTo... and RemoveProgressFrom... methods with the existing Show and Hide methods.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2845_EnhancedProgress/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs

    r16317 r16318  
    7575      Content.Loaded += new EventHandler(Content_Loaded);
    7676      Content.TaskReceived += new EventHandler(Content_TaskReceived);
    77       Progress.AddProgressToView(this, Content.Progress);
     77      Progress.Show(this, Content.Progress);
    7878    }
    7979
     
    9090      Content.Loaded -= new EventHandler(Content_Loaded);
    9191      Content.TaskReceived -= new EventHandler(Content_TaskReceived);
    92       Progress.RemoveProgressFromView(this, false);
     92      Progress.Hide(this, false);
    9393      DeregisterHiveExperimentEvents();
    9494      DeregisterHiveTasksEvents();
Note: See TracChangeset for help on using the changeset viewer.