Changeset 3904 for trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization
- Timestamp:
- 06/08/10 17:46:53 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs
r3765 r3904 66 66 if (createdVisualizationInfo) 67 67 this.graphVisualizationInfoView.RelayoutGraph(); 68 69 this.SetEnabledStateOfControls(); 70 } 71 72 protected override void OnReadOnlyChanged() { 73 base.OnReadOnlyChanged(); 74 this.SetEnabledStateOfControls(); 75 } 76 77 protected override void OnLockedChanged() { 78 base.OnLockedChanged(); 79 this.SetEnabledStateOfControls(); 80 } 81 82 private void SetEnabledStateOfControls() { 68 } 69 70 protected override void SetEnabledStateOfControls() { 71 base.SetEnabledStateOfControls(); 83 72 if (Content == null) { 84 73 selectButton.Enabled = false;
Note: See TracChangeset
for help on using the changeset viewer.