- Timestamp:
- 08/07/13 13:28:48 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ProgressView.cs
r9849 r9865 167 167 Invoke((Action)LockBackground); 168 168 } else { 169 parentView.Enabled = false; 169 foreach (Control c in Control.Controls) 170 c.Enabled = false; 170 171 Enabled = true; 171 172 } … … 175 176 if (InvokeRequired) Invoke((Action)UnlockBackground); 176 177 else { 177 parentView.Enabled = true; 178 foreach (Control c in Control.Controls) 179 c.Enabled = true; 178 180 Enabled = false; 179 181 }
Note: See TracChangeset
for help on using the changeset viewer.