- Timestamp:
- 10/11/17 10:00:34 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/EnhancedProgress/HeuristicLab.MainForm/3.3/Interfaces/IProgress.cs
r15415 r15417 24 24 25 25 namespace HeuristicLab.MainForm { 26 public enum ProgressState { Started, Finished, Stop ped, Canceled }26 public enum ProgressState { Started, Finished, StopRequested, CancelRequested } 27 27 public enum ProgressBarMode { Continuous, Marquee } 28 28 … … 36 36 /// </summary> 37 37 double ProgressValue { get; set; } 38 bool Visible { get; set; }39 38 bool CanBeStopped { get; } 40 39 bool CanBeCanceled { get; } … … 56 55 event EventHandler ProgressBarModeChanged; 57 56 event EventHandler ProgressValueChanged; 58 event EventHandler VisibleChanged;59 57 event EventHandler CanBeStoppedChanged; 60 58 event EventHandler CanBeCanceledChanged;
Note: See TracChangeset
for help on using the changeset viewer.