Changeset 4519
- Timestamp:
- 09/27/10 15:55:22 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs
r4446 r4519 69 69 locked = value; 70 70 OnLockedChanged(); 71 SetEnabledStateOfControls();72 71 PropertyInfo prop = typeof(IContentView).GetProperty("Locked"); 73 72 PropagateStateChanges(this, typeof(IContentView), prop); 73 SetEnabledStateOfControls(); 74 74 OnChanged(); 75 75 } -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/View.cs
r4449 r4519 67 67 this.readOnly = value; 68 68 OnReadOnlyChanged(); 69 SetEnabledStateOfControls();70 69 PropertyInfo prop = typeof(IView).GetProperty("ReadOnly"); 71 70 PropagateStateChanges(this, typeof(IView), prop); 71 SetEnabledStateOfControls(); 72 72 OnChanged(); 73 73 }
Note: See TracChangeset
for help on using the changeset viewer.