Changeset 15626 for trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs
- Timestamp:
- 01/17/18 14:11:45 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs
r15583 r15626 51 51 this.factorVarReplacementLabel = new System.Windows.Forms.Label(); 52 52 this.factorVarReplComboBox = new System.Windows.Forms.ComboBox(); 53 this.sortByLabel = new System.Windows.Forms.Label(); 54 this.sortByComboBox = new System.Windows.Forms.ComboBox(); 55 this.ascendingCheckBox = new System.Windows.Forms.CheckBox(); 53 56 this.SuspendLayout(); 54 57 // 55 58 // variableImactsArrayView 56 59 // 57 this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 58 | System.Windows.Forms.AnchorStyles.Left) 60 this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 61 | System.Windows.Forms.AnchorStyles.Left) 59 62 | System.Windows.Forms.AnchorStyles.Right))); 60 63 this.variableImactsArrayView.Caption = "StringConvertibleArray View"; … … 63 66 this.variableImactsArrayView.Name = "variableImactsArrayView"; 64 67 this.variableImactsArrayView.ReadOnly = true; 65 this.variableImactsArrayView.Size = new System.Drawing.Size( 363, 278);68 this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278); 66 69 this.variableImactsArrayView.TabIndex = 2; 67 70 // … … 133 136 this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged); 134 137 // 138 // sortByLabel 139 // 140 this.sortByLabel.AutoSize = true; 141 this.sortByLabel.Location = new System.Drawing.Point(324, 6); 142 this.sortByLabel.Name = "sortByLabel"; 143 this.sortByLabel.Size = new System.Drawing.Size(43, 13); 144 this.sortByLabel.TabIndex = 4; 145 this.sortByLabel.Text = "Sort by:"; 146 // 147 // sortByComboBox 148 // 149 this.sortByComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 150 this.sortByComboBox.FormattingEnabled = true; 151 this.sortByComboBox.Items.AddRange(new object[] { 152 "Variable", 153 "Impact"}); 154 this.sortByComboBox.Location = new System.Drawing.Point(373, 3); 155 this.sortByComboBox.Name = "sortByComboBox"; 156 this.sortByComboBox.Size = new System.Drawing.Size(121, 21); 157 this.sortByComboBox.TabIndex = 5; 158 this.sortByComboBox.SelectedIndexChanged += new System.EventHandler(this.sortByComboBox_SelectedIndexChanged); 159 this.sortByComboBox.SelectedIndex = 1; 160 // 161 // ascendingCheckBox 162 // 163 this.ascendingCheckBox.AutoSize = true; 164 this.ascendingCheckBox.Location = new System.Drawing.Point(500, 6); 165 this.ascendingCheckBox.Name = "ascendingCheckBox"; 166 this.ascendingCheckBox.Size = new System.Drawing.Size(76, 17); 167 this.ascendingCheckBox.TabIndex = 7; 168 this.ascendingCheckBox.Text = "Ascending"; 169 this.ascendingCheckBox.UseVisualStyleBackColor = true; 170 this.ascendingCheckBox.CheckedChanged += new System.EventHandler(this.ascendingCheckBox_CheckedChanged); 171 // 135 172 // RegressionSolutionVariableImpactsView 136 173 // 137 174 this.AllowDrop = true; 138 175 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 176 this.Controls.Add(this.ascendingCheckBox); 177 this.Controls.Add(this.sortByLabel); 178 this.Controls.Add(this.sortByComboBox); 139 179 this.Controls.Add(this.factorVarReplComboBox); 140 180 this.Controls.Add(this.factorVarReplacementLabel); … … 145 185 this.Controls.Add(this.variableImactsArrayView); 146 186 this.Name = "RegressionSolutionVariableImpactsView"; 147 this.Size = new System.Drawing.Size( 369, 365);187 this.Size = new System.Drawing.Size(712, 365); 148 188 this.ResumeLayout(false); 149 189 this.PerformLayout(); … … 160 200 private System.Windows.Forms.Label factorVarReplacementLabel; 161 201 private System.Windows.Forms.ComboBox factorVarReplComboBox; 202 private System.Windows.Forms.Label sortByLabel; 203 private System.Windows.Forms.ComboBox sortByComboBox; 204 private System.Windows.Forms.CheckBox ascendingCheckBox; 162 205 } 163 206 }
Note: See TracChangeset
for help on using the changeset viewer.