Changeset 11111 for trunk/sources
- Timestamp:
- 07/07/14 14:42:44 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.Designer.cs
r11086 r11111 47 47 private void InitializeComponent() { 48 48 this.components = new System.ComponentModel.Container(); 49 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InteractiveSymbolicDataAnalysisSolutionSimplifierView)); 49 50 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 50 51 this.splitContainer = new System.Windows.Forms.SplitContainer(); … … 52 53 this.treeStatusValue = new System.Windows.Forms.Label(); 53 54 this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel(); 55 this.btnSimplify = new System.Windows.Forms.Button(); 54 56 this.btnOptimizeConstants = new System.Windows.Forms.Button(); 55 this.btnSimplify = new System.Windows.Forms.Button(); 56 this.treeStatusLabel = new System.Windows.Forms.Label(); 57 this.grpViewHost = new System.Windows.Forms.GroupBox(); 57 58 this.treeChart = new HeuristicLab.Problems.DataAnalysis.Symbolic.Views.InteractiveSymbolicExpressionTreeChart(); 58 this.grpViewHost = new System.Windows.Forms.GroupBox();59 59 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 60 60 this.splitContainer.Panel1.SuspendLayout(); … … 68 68 // viewHost 69 69 // 70 this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 71 | System.Windows.Forms.AnchorStyles.Left) 70 this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 71 | System.Windows.Forms.AnchorStyles.Left) 72 72 | System.Windows.Forms.AnchorStyles.Right))); 73 73 this.viewHost.Caption = "View"; … … 104 104 this.grpSimplify.Controls.Add(this.treeStatusValue); 105 105 this.grpSimplify.Controls.Add(this.flowLayoutPanel); 106 this.grpSimplify.Controls.Add(this.treeStatusLabel);107 106 this.grpSimplify.Controls.Add(this.treeChart); 108 107 this.grpSimplify.Dock = System.Windows.Forms.DockStyle.Fill; … … 116 115 // treeStatusValue 117 116 // 117 this.treeStatusValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 118 118 this.treeStatusValue.AutoSize = true; 119 this.treeStatusValue.BackColor = System.Drawing.Color. Transparent;120 this.treeStatusValue.ForeColor = System.Drawing.Color. Green;121 this.treeStatusValue.Location = new System.Drawing.Point( 72, 16);119 this.treeStatusValue.BackColor = System.Drawing.Color.White; 120 this.treeStatusValue.ForeColor = System.Drawing.Color.Red; 121 this.treeStatusValue.Location = new System.Drawing.Point(6, 351); 122 122 this.treeStatusValue.Name = "treeStatusValue"; 123 this.treeStatusValue.Size = new System.Drawing.Size( 30, 13);123 this.treeStatusValue.Size = new System.Drawing.Size(63, 13); 124 124 this.treeStatusValue.TabIndex = 3; 125 this.treeStatusValue.Text = "Valid"; 125 this.treeStatusValue.Text = "Invalid Tree"; 126 this.treeStatusValue.Visible = false; 126 127 // 127 128 // flowLayoutPanel 128 129 // 129 this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 130 this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 130 131 | System.Windows.Forms.AnchorStyles.Right))); 131 132 this.flowLayoutPanel.Controls.Add(this.btnSimplify); … … 137 138 this.flowLayoutPanel.WrapContents = false; 138 139 // 139 // btnOptimizeConstants140 //141 this.btnOptimizeConstants.AutoSize = true;142 this.btnOptimizeConstants.Enabled = false;143 this.btnOptimizeConstants.Image = HeuristicLab.Common.Resources.VSImageLibrary.Performance;144 this.btnOptimizeConstants.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;145 this.btnOptimizeConstants.Location = new System.Drawing.Point(105, 3);146 this.btnOptimizeConstants.Name = "btnOptimizeConstants";147 this.btnOptimizeConstants.Size = new System.Drawing.Size(80, 24);148 this.btnOptimizeConstants.TabIndex = 2;149 this.btnOptimizeConstants.Text = "Optimize";150 this.btnOptimizeConstants.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;151 this.btnOptimizeConstants.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;152 this.btnOptimizeConstants.UseVisualStyleBackColor = true;153 this.btnOptimizeConstants.Click += new System.EventHandler(this.btnOptimizeConstants_Click);154 //155 140 // btnSimplify 156 141 // 157 142 this.btnSimplify.AutoSize = true; 158 this.btnSimplify.Enabled = true; 159 this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator; 160 this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter; 143 this.btnSimplify.Image = ((System.Drawing.Image)(resources.GetObject("btnSimplify.Image"))); 161 144 this.btnSimplify.Location = new System.Drawing.Point(3, 3); 162 145 this.btnSimplify.Name = "btnSimplify"; … … 164 147 this.btnSimplify.TabIndex = 1; 165 148 this.btnSimplify.Text = "Simplify"; 166 this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;167 149 this.btnSimplify.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 168 150 this.btnSimplify.UseVisualStyleBackColor = true; 169 151 this.btnSimplify.Click += new System.EventHandler(this.btnSimplify_Click); 170 152 // 171 // treeStatusLabel 172 // 173 this.treeStatusLabel.AutoSize = true; 174 this.treeStatusLabel.BackColor = System.Drawing.Color.Transparent; 175 this.treeStatusLabel.Location = new System.Drawing.Point(6, 16); 176 this.treeStatusLabel.Name = "treeStatusLabel"; 177 this.treeStatusLabel.Size = new System.Drawing.Size(68, 13); 178 this.treeStatusLabel.TabIndex = 2; 179 this.treeStatusLabel.Text = "Tree Status: "; 153 // btnOptimizeConstants 154 // 155 this.btnOptimizeConstants.AutoSize = true; 156 this.btnOptimizeConstants.Enabled = false; 157 this.btnOptimizeConstants.Image = ((System.Drawing.Image)(resources.GetObject("btnOptimizeConstants.Image"))); 158 this.btnOptimizeConstants.Location = new System.Drawing.Point(89, 3); 159 this.btnOptimizeConstants.Name = "btnOptimizeConstants"; 160 this.btnOptimizeConstants.Size = new System.Drawing.Size(80, 24); 161 this.btnOptimizeConstants.TabIndex = 2; 162 this.btnOptimizeConstants.Text = "Optimize"; 163 this.btnOptimizeConstants.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 164 this.btnOptimizeConstants.UseVisualStyleBackColor = true; 165 this.btnOptimizeConstants.Click += new System.EventHandler(this.btnOptimizeConstants_Click); 166 // 167 // grpViewHost 168 // 169 this.grpViewHost.Controls.Add(this.viewHost); 170 this.grpViewHost.Dock = System.Windows.Forms.DockStyle.Fill; 171 this.grpViewHost.Location = new System.Drawing.Point(0, 0); 172 this.grpViewHost.Name = "grpViewHost"; 173 this.grpViewHost.Size = new System.Drawing.Size(348, 405); 174 this.grpViewHost.TabIndex = 1; 175 this.grpViewHost.TabStop = false; 176 this.grpViewHost.Text = "Details"; 180 177 // 181 178 // treeChart 182 179 // 183 this.treeChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 184 | System.Windows.Forms.AnchorStyles.Left) 180 this.treeChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 181 | System.Windows.Forms.AnchorStyles.Left) 185 182 | System.Windows.Forms.AnchorStyles.Right))); 186 183 this.treeChart.BackgroundColor = System.Drawing.Color.White; 187 184 this.treeChart.LineColor = System.Drawing.Color.Black; 188 185 this.treeChart.Location = new System.Drawing.Point(6, 32); 186 this.treeChart.ModifyTree = null; 189 187 this.treeChart.Name = "treeChart"; 190 188 this.treeChart.Size = new System.Drawing.Size(201, 332); … … 195 193 this.treeChart.Tree = null; 196 194 this.treeChart.SymbolicExpressionTreeNodeDoubleClicked += new System.Windows.Forms.MouseEventHandler(this.treeChart_SymbolicExpressionTreeNodeDoubleClicked); 197 //198 // grpViewHost199 //200 this.grpViewHost.Controls.Add(this.viewHost);201 this.grpViewHost.Dock = System.Windows.Forms.DockStyle.Fill;202 this.grpViewHost.Location = new System.Drawing.Point(0, 0);203 this.grpViewHost.Name = "grpViewHost";204 this.grpViewHost.Size = new System.Drawing.Size(348, 405);205 this.grpViewHost.TabIndex = 1;206 this.grpViewHost.TabStop = false;207 this.grpViewHost.Text = "Details";208 195 // 209 196 // InteractiveSymbolicDataAnalysisSolutionSimplifierView … … 223 210 this.grpSimplify.PerformLayout(); 224 211 this.flowLayoutPanel.ResumeLayout(false); 212 this.flowLayoutPanel.PerformLayout(); 225 213 this.grpViewHost.ResumeLayout(false); 226 214 this.ResumeLayout(false); … … 239 227 protected System.Windows.Forms.Button btnOptimizeConstants; 240 228 private System.Windows.Forms.Label treeStatusValue; 241 private System.Windows.Forms.Label treeStatusLabel;242 229 } 243 230 } -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs
r11086 r11111 116 116 btnOptimizeConstants.Enabled = true; 117 117 btnSimplify.Enabled = true; 118 treeStatusValue.Text = "Valid"; 119 treeStatusValue.ForeColor = Color.Green; 118 treeStatusValue.Visible = false; 120 119 } else { 121 120 btnOptimizeConstants.Enabled = false; 122 121 btnSimplify.Enabled = false; 123 treeStatusValue.Text = "Invalid"; 124 treeStatusValue.ForeColor = Color.Red; 122 treeStatusValue.Visible = true; 125 123 } 126 124 this.Refresh(); -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicExpressionTreeChart.cs
r11086 r11111 76 76 pasteToolStripMenuItem.Visible = true; 77 77 pasteToolStripMenuItem.Enabled = tempNode != null && insertNodeToolStripMenuItem.Enabled 78 && !(lastOp == EditOp.CutSubtree 79 && tempNode.IterateNodesBreadth().Contains(currSelected.Content));78 && !(lastOp == EditOp.CutSubtree && tempNode.IterateNodesBreadth().Contains(node)) 79 && node.SubtreeCount < node.Symbol.MaximumArity; 80 80 } 81 81 } … … 96 96 97 97 using (var dialog = new InsertNodeDialog()) { 98 dialog.SetAllowedSymbols(parent.Grammar.Symbols.Where(s => !(s is ProgramRootSymbol || s is StartSymbol || s is Defun ))); // allow everything98 dialog.SetAllowedSymbols(parent.Grammar.Symbols.Where(s => !(s is ProgramRootSymbol || s is StartSymbol || s is Defun || s is GroupSymbol))); // allow everything 99 99 dialog.ShowDialog(this); 100 100 if (dialog.DialogResult != DialogResult.OK) return; -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeConstantNodeEditDialog.Designer.cs
r9456 r11111 67 67 // oldValueTextBox 68 68 // 69 this.oldValueTextBox.Location = new System.Drawing.Point(1 23, 6);69 this.oldValueTextBox.Location = new System.Drawing.Point(106, 6); 70 70 this.oldValueTextBox.Name = "oldValueTextBox"; 71 71 this.oldValueTextBox.ReadOnly = true; … … 75 75 // newValueTextBox 76 76 // 77 this.newValueTextBox.Location = new System.Drawing.Point(1 23, 42);77 this.newValueTextBox.Location = new System.Drawing.Point(106, 32); 78 78 this.newValueTextBox.Name = "newValueTextBox"; 79 79 this.newValueTextBox.Size = new System.Drawing.Size(131, 20); … … 86 86 // 87 87 this.newValueLabel.AutoSize = true; 88 this.newValueLabel.Location = new System.Drawing.Point(12, 45);88 this.newValueLabel.Location = new System.Drawing.Point(12, 35); 89 89 this.newValueLabel.Name = "newValueLabel"; 90 90 this.newValueLabel.Size = new System.Drawing.Size(59, 13); … … 101 101 // 102 102 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; 103 this.okButton.Location = new System.Drawing.Point( 15, 79);103 this.okButton.Location = new System.Drawing.Point(81, 66); 104 104 this.okButton.Name = "okButton"; 105 105 this.okButton.Size = new System.Drawing.Size(75, 23); … … 113 113 this.cancelButton.CausesValidation = false; 114 114 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 115 this.cancelButton.Location = new System.Drawing.Point(1 79, 79);115 this.cancelButton.Location = new System.Drawing.Point(162, 66); 116 116 this.cancelButton.Name = "cancelButton"; 117 117 this.cancelButton.Size = new System.Drawing.Size(75, 23); … … 127 127 this.AutoSize = true; 128 128 this.CancelButton = this.cancelButton; 129 this.ClientSize = new System.Drawing.Size(2 69, 116);129 this.ClientSize = new System.Drawing.Size(248, 101); 130 130 this.ControlBox = false; 131 131 this.Controls.Add(this.cancelButton); -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeNodeInsertDialog.Designer.cs
r9456 r11111 63 63 // 64 64 this.nodeSymbolLabel.AutoSize = true; 65 this.nodeSymbolLabel.Location = new System.Drawing.Point(1 3, 13);65 this.nodeSymbolLabel.Location = new System.Drawing.Point(19, 13); 66 66 this.nodeSymbolLabel.Name = "nodeSymbolLabel"; 67 67 this.nodeSymbolLabel.Size = new System.Drawing.Size(41, 13); … … 73 73 this.allowedSymbolsCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 74 74 this.allowedSymbolsCombo.FormattingEnabled = true; 75 this.allowedSymbolsCombo.Location = new System.Drawing.Point(1 20, 10);75 this.allowedSymbolsCombo.Location = new System.Drawing.Point(101, 10); 76 76 this.allowedSymbolsCombo.Name = "allowedSymbolsCombo"; 77 this.allowedSymbolsCombo.Size = new System.Drawing.Size(1 08, 21);77 this.allowedSymbolsCombo.Size = new System.Drawing.Size(127, 21); 78 78 this.allowedSymbolsCombo.TabIndex = 1; 79 79 this.allowedSymbolsCombo.SelectedIndexChanged += new System.EventHandler(this.allowedSymbolsCombo_SelectedIndexChanged); … … 83 83 // 84 84 this.variableWeightLabel.AutoSize = true; 85 this.variableWeightLabel.Location = new System.Drawing.Point(1 3, 44);85 this.variableWeightLabel.Location = new System.Drawing.Point(19, 40); 86 86 this.variableWeightLabel.Name = "variableWeightLabel"; 87 87 this.variableWeightLabel.Size = new System.Drawing.Size(41, 13); … … 93 93 // 94 94 this.variableNameLabel.AutoSize = true; 95 this.variableNameLabel.Location = new System.Drawing.Point(1 3, 74);95 this.variableNameLabel.Location = new System.Drawing.Point(19, 66); 96 96 this.variableNameLabel.Name = "variableNameLabel"; 97 97 this.variableNameLabel.Size = new System.Drawing.Size(35, 13); … … 104 104 this.variableNamesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 105 105 this.variableNamesCombo.FormattingEnabled = true; 106 this.variableNamesCombo.Location = new System.Drawing.Point(1 20, 71);106 this.variableNamesCombo.Location = new System.Drawing.Point(101, 63); 107 107 this.variableNamesCombo.Name = "variableNamesCombo"; 108 this.variableNamesCombo.Size = new System.Drawing.Size(1 08, 21);108 this.variableNamesCombo.Size = new System.Drawing.Size(127, 21); 109 109 this.variableNamesCombo.TabIndex = 5; 110 110 this.variableNamesCombo.Visible = false; … … 112 112 // variableWeightTextBox 113 113 // 114 this.variableWeightTextBox.Location = new System.Drawing.Point(120, 41);114 this.variableWeightTextBox.Location = new System.Drawing.Point(120, 37); 115 115 this.variableWeightTextBox.Name = "variableWeightTextBox"; 116 116 this.variableWeightTextBox.Size = new System.Drawing.Size(108, 20); … … 122 122 // constantValueTextBox 123 123 // 124 this.constantValueTextBox.Location = new System.Drawing.Point(1 20, 41);124 this.constantValueTextBox.Location = new System.Drawing.Point(101, 37); 125 125 this.constantValueTextBox.Name = "constantValueTextBox"; 126 this.constantValueTextBox.Size = new System.Drawing.Size(1 08, 20);126 this.constantValueTextBox.Size = new System.Drawing.Size(127, 20); 127 127 this.constantValueTextBox.TabIndex = 7; 128 128 this.constantValueTextBox.Text = "0.0"; … … 133 133 // 134 134 this.constantValueLabel.AutoSize = true; 135 this.constantValueLabel.Location = new System.Drawing.Point(1 3, 44);135 this.constantValueLabel.Location = new System.Drawing.Point(19, 40); 136 136 this.constantValueLabel.Name = "constantValueLabel"; 137 137 this.constantValueLabel.Size = new System.Drawing.Size(34, 13); … … 149 149 // 150 150 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; 151 this.okButton.Location = new System.Drawing.Point( 12, 112);151 this.okButton.Location = new System.Drawing.Point(72, 98); 152 152 this.okButton.Name = "okButton"; 153 153 this.okButton.Size = new System.Drawing.Size(75, 23); … … 160 160 // 161 161 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 162 this.cancelButton.Location = new System.Drawing.Point(153, 112);162 this.cancelButton.Location = new System.Drawing.Point(153, 98); 163 163 this.cancelButton.Name = "cancelButton"; 164 164 this.cancelButton.Size = new System.Drawing.Size(75, 23); … … 173 173 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 174 174 this.CancelButton = this.cancelButton; 175 this.ClientSize = new System.Drawing.Size(24 0, 147);175 this.ClientSize = new System.Drawing.Size(241, 133); 176 176 this.ControlBox = false; 177 177 this.Controls.Add(this.cancelButton); -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeVariableNodeEditDialog.Designer.cs
r9456 r11111 61 61 // 62 62 this.originalValueLabel.AutoSize = true; 63 this.originalValueLabel.Location = new System.Drawing.Point( 12, 48);63 this.originalValueLabel.Location = new System.Drawing.Point(6, 42); 64 64 this.originalValueLabel.Name = "originalValueLabel"; 65 65 this.originalValueLabel.Size = new System.Drawing.Size(72, 13); … … 69 69 // oldValueTextBox 70 70 // 71 this.oldValueTextBox.Location = new System.Drawing.Point(1 23, 45);71 this.oldValueTextBox.Location = new System.Drawing.Point(101, 39); 72 72 this.oldValueTextBox.Name = "oldValueTextBox"; 73 73 this.oldValueTextBox.ReadOnly = true; … … 77 77 // newValueTextBox 78 78 // 79 this.newValueTextBox.Location = new System.Drawing.Point(1 23, 82);79 this.newValueTextBox.Location = new System.Drawing.Point(101, 65); 80 80 this.newValueTextBox.Name = "newValueTextBox"; 81 81 this.newValueTextBox.Size = new System.Drawing.Size(131, 20); … … 88 88 // 89 89 this.newValueLabel.AutoSize = true; 90 this.newValueLabel.Location = new System.Drawing.Point( 12, 85);90 this.newValueLabel.Location = new System.Drawing.Point(6, 68); 91 91 this.newValueLabel.Name = "newValueLabel"; 92 92 this.newValueLabel.Size = new System.Drawing.Size(59, 13); … … 103 103 // 104 104 this.variableNameLabel.AutoSize = true; 105 this.variableNameLabel.Location = new System.Drawing.Point( 12, 12);105 this.variableNameLabel.Location = new System.Drawing.Point(6, 15); 106 106 this.variableNameLabel.Name = "variableNameLabel"; 107 107 this.variableNameLabel.Size = new System.Drawing.Size(76, 13); … … 114 114 this.variableNamesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 115 115 this.variableNamesCombo.FormattingEnabled = true; 116 this.variableNamesCombo.Location = new System.Drawing.Point(1 23, 9);116 this.variableNamesCombo.Location = new System.Drawing.Point(101, 12); 117 117 this.variableNamesCombo.Name = "variableNamesCombo"; 118 118 this.variableNamesCombo.Size = new System.Drawing.Size(131, 21); … … 126 126 // 127 127 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; 128 this.okButton.Location = new System.Drawing.Point( 15, 119);128 this.okButton.Location = new System.Drawing.Point(75, 98); 129 129 this.okButton.Name = "okButton"; 130 130 this.okButton.Size = new System.Drawing.Size(75, 23); … … 138 138 this.cancelButton.CausesValidation = false; 139 139 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 140 this.cancelButton.Location = new System.Drawing.Point(1 79, 119);140 this.cancelButton.Location = new System.Drawing.Point(156, 98); 141 141 this.cancelButton.Name = "cancelButton"; 142 142 this.cancelButton.Size = new System.Drawing.Size(75, 23); … … 152 152 this.AutoSize = true; 153 153 this.CancelButton = this.cancelButton; 154 this.ClientSize = new System.Drawing.Size(2 69, 154);154 this.ClientSize = new System.Drawing.Size(244, 134); 155 155 this.ControlBox = false; 156 156 this.Controls.Add(this.cancelButton);
Note: See TracChangeset
for help on using the changeset viewer.