- Timestamp:
- 08/07/13 15:54:59 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ProgressView.cs
r9867 r9868 47 47 public bool DisposeOnFinish { get; set; } 48 48 49 public ProgressView( IView view) {49 public ProgressView() { 50 50 InitializeComponent(); 51 } 52 53 public ProgressView(IView view) 54 : this() { 51 55 if (view == null) throw new ArgumentNullException("view", "The view is null."); 52 56 if (!(view is Control)) throw new ArgumentException("The view is not a control.", "view");
Note: See TracChangeset
for help on using the changeset viewer.