- Timestamp:
- 04/25/10 16:26:09 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.Designer.cs
r3514 r3523 35 35 this.zoomOutButton = new System.Windows.Forms.Button(); 36 36 this.zoomInButton = new System.Windows.Forms.Button(); 37 this.zoom AreaButton = new System.Windows.Forms.Button();37 this.zoomToFitButton = new System.Windows.Forms.Button(); 38 38 this.relayoutButton = new System.Windows.Forms.Button(); 39 39 this.connectButton = new System.Windows.Forms.Button(); … … 107 107 this.splitContainer.Panel1.Controls.Add(this.zoomOutButton); 108 108 this.splitContainer.Panel1.Controls.Add(this.zoomInButton); 109 this.splitContainer.Panel1.Controls.Add(this.zoom AreaButton);109 this.splitContainer.Panel1.Controls.Add(this.zoomToFitButton); 110 110 this.splitContainer.Panel1.Controls.Add(this.relayoutButton); 111 111 this.splitContainer.Panel1.Controls.Add(this.connectButton); … … 156 156 // zoomAreaButton 157 157 // 158 this.zoom AreaButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ActualSize;159 this.zoom AreaButton.Location = new System.Drawing.Point(153, 3);160 this.zoom AreaButton.Name = "zoomAreaButton";161 this.zoom AreaButton.Size = new System.Drawing.Size(24, 24);162 this.zoom AreaButton.TabIndex = 5;163 this.buttonToolTip.SetToolTip(this.zoom AreaButton, "Zoom Area Tool");164 this.zoom AreaButton.UseVisualStyleBackColor = true;165 this.zoom AreaButton.Click += new System.EventHandler(this.zoomAreaButton_Click);158 this.zoomToFitButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ActualSize; 159 this.zoomToFitButton.Location = new System.Drawing.Point(153, 3); 160 this.zoomToFitButton.Name = "zoomAreaButton"; 161 this.zoomToFitButton.Size = new System.Drawing.Size(24, 24); 162 this.zoomToFitButton.TabIndex = 5; 163 this.buttonToolTip.SetToolTip(this.zoomToFitButton, "Zoom to Fit"); 164 this.zoomToFitButton.UseVisualStyleBackColor = true; 165 this.zoomToFitButton.Click += new System.EventHandler(this.zoomAreaButton_Click); 166 166 // 167 167 // relayoutButton … … 267 267 private System.Windows.Forms.Button zoomOutButton; 268 268 private System.Windows.Forms.Button zoomInButton; 269 private System.Windows.Forms.Button zoom AreaButton;269 private System.Windows.Forms.Button zoomToFitButton; 270 270 private System.Windows.Forms.Button relayoutButton; 271 271 private System.Windows.Forms.Button connectButton; -
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs
r3514 r3523 91 91 panButton.Enabled = false; 92 92 relayoutButton.Enabled = false; 93 zoom AreaButton.Enabled = false;93 zoomToFitButton.Enabled = false; 94 94 zoomInButton.Enabled = false; 95 95 zoomOutButton.Enabled = false; … … 101 101 panButton.Enabled = true; 102 102 relayoutButton.Enabled = true; 103 zoom AreaButton.Enabled = true;103 zoomToFitButton.Enabled = true; 104 104 zoomInButton.Enabled = true; 105 105 zoomOutButton.Enabled = true; … … 281 281 break; 282 282 case ControllerBase.ZoomAreaToolName: 283 button = this.zoom AreaButton;283 button = this.zoomToFitButton; 284 284 break; 285 285 }
Note: See TracChangeset
for help on using the changeset viewer.