Changeset 3696 for trunk/sources
- Timestamp:
- 05/07/10 11:42:35 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators.Views/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views/3.3/AlgorithmOperatorView.cs
r3566 r3696 82 82 SetEnabledStateOfControls(); 83 83 } 84 protected override void OnLockedChanged() { 85 base.OnLockedChanged(); 86 this.SetEnabledStateOfControls(); 87 } 84 88 85 89 private void SetEnabledStateOfControls() { 86 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;90 breakpointCheckBox.Enabled = Content != null && !Locked; 87 91 parameterCollectionView.Enabled = Content != null; 88 92 operatorGraphViewHost.Enabled = Content != null; 89 93 } 94 95 90 96 91 97 protected void Content_BreakpointChanged(object sender, EventArgs e) { -
trunk/sources/HeuristicLab.Operators.Views/3.3/CheckedMultiOperatorView.cs
r3591 r3696 78 78 SetEnabledStateOfControls(); 79 79 } 80 protected override void OnLockedChanged() { 81 base.OnLockedChanged(); 82 this.SetEnabledStateOfControls(); 83 } 80 84 81 85 private void SetEnabledStateOfControls() { 82 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;86 breakpointCheckBox.Enabled = Content != null && !Locked; 83 87 operatorListView.Enabled = Content != null; 84 88 parameterCollectionView.Enabled = Content != null; -
trunk/sources/HeuristicLab.Operators.Views/3.3/MultiOperatorView.cs
r3566 r3696 81 81 SetEnabledStateOfControls(); 82 82 } 83 protected override void OnLockedChanged() { 84 base.OnLockedChanged(); 85 this.SetEnabledStateOfControls(); 86 } 83 87 84 88 private void SetEnabledStateOfControls() { 85 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;89 breakpointCheckBox.Enabled = Content != null && !Locked; 86 90 operatorListView.Enabled = Content != null; 87 91 parameterCollectionView.Enabled = Content != null; -
trunk/sources/HeuristicLab.Operators.Views/3.3/OperatorView.cs
r3566 r3696 78 78 SetEnabledStateOfControls(); 79 79 } 80 protected override void OnLockedChanged() { 81 base.OnLockedChanged(); 82 this.SetEnabledStateOfControls(); 83 } 80 84 81 85 private void SetEnabledStateOfControls() { 82 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;86 breakpointCheckBox.Enabled = Content != null && !Locked; 83 87 } 84 88 -
trunk/sources/HeuristicLab.Operators.Views/3.3/ValuesCollectorView.cs
r3566 r3696 81 81 SetEnabledStateOfControls(); 82 82 } 83 protected override void OnLockedChanged() { 84 base.OnLockedChanged(); 85 this.SetEnabledStateOfControls(); 86 } 83 87 84 88 private void SetEnabledStateOfControls() { 85 breakpointCheckBox.Enabled = Content != null && ! ReadOnly;89 breakpointCheckBox.Enabled = Content != null && !Locked; 86 90 collectedValuesView.Enabled = Content != null; 87 91 parameterCollectionView.Enabled = Content != null;
Note: See TracChangeset
for help on using the changeset viewer.