Changeset 3927
- Timestamp:
- 06/17/10 14:48:30 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/InteractiveSymbolicRegressionSolutionSimplifierView.Designer.cs
r3915 r3927 49 49 this.splitContainer = new System.Windows.Forms.SplitContainer(); 50 50 this.grpSimplify = new System.Windows.Forms.GroupBox(); 51 this.btnSimplify = new System.Windows.Forms.Button(); 51 52 this.grpViewHost = new System.Windows.Forms.GroupBox(); 52 53 this.splitContainer.Panel1.SuspendLayout(); … … 66 67 this.treeChart.Location = new System.Drawing.Point(6, 16); 67 68 this.treeChart.Name = "treeChart"; 68 this.treeChart.Size = new System.Drawing.Size(201, 326);69 this.treeChart.Size = new System.Drawing.Size(201, 297); 69 70 this.treeChart.Spacing = 5; 70 71 this.treeChart.TabIndex = 0; … … 106 107 // grpSimplify 107 108 // 109 this.grpSimplify.Controls.Add(this.btnSimplify); 108 110 this.grpSimplify.Controls.Add(this.treeChart); 109 111 this.grpSimplify.Dock = System.Windows.Forms.DockStyle.Fill; … … 114 116 this.grpSimplify.TabStop = false; 115 117 this.grpSimplify.Text = "Simplify"; 118 // 119 // btnSimplify 120 // 121 this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 122 | System.Windows.Forms.AnchorStyles.Right))); 123 this.btnSimplify.Location = new System.Drawing.Point(6, 319); 124 this.btnSimplify.Name = "btnSimplify"; 125 this.btnSimplify.Size = new System.Drawing.Size(201, 23); 126 this.btnSimplify.TabIndex = 1; 127 this.btnSimplify.Text = "Simplify"; 128 this.btnSimplify.UseVisualStyleBackColor = true; 129 this.btnSimplify.Click += new System.EventHandler(this.btnSimplify_Click); 116 130 // 117 131 // grpViewHost … … 149 163 private System.Windows.Forms.GroupBox grpSimplify; 150 164 private System.Windows.Forms.GroupBox grpViewHost; 165 private System.Windows.Forms.Button btnSimplify; 151 166 } 152 167 } -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/InteractiveSymbolicRegressionSolutionSimplifierView.cs
r3915 r3927 215 215 } 216 216 } 217 218 private void btnSimplify_Click(object sender, EventArgs e) { 219 this.CalculateReplacementNodesAndNodeImpacts(); 220 } 217 221 } 218 222 }
Note: See TracChangeset
for help on using the changeset viewer.