Changeset 9909
- Timestamp:
- 08/27/13 11:02:06 (11 years ago)
- Location:
- branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.designer.cs
r9908 r9909 44 44 this.dataTableComboBox = new System.Windows.Forms.ComboBox(); 45 45 this.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView(); 46 this.splitContainer = new System.Windows.Forms.SplitContainer();47 46 this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 48 47 this.infoLabel = new System.Windows.Forms.Label(); 49 48 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 50 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();51 this.splitContainer.Panel1.SuspendLayout();52 this.splitContainer.Panel2.SuspendLayout();53 this.splitContainer.SuspendLayout();54 49 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); 55 50 this.splitContainer1.Panel1.SuspendLayout(); … … 63 58 this.fittingComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 64 59 this.fittingComboBox.FormattingEnabled = true; 65 this.fittingComboBox.Location = new System.Drawing.Point( 271, 3);60 this.fittingComboBox.Location = new System.Drawing.Point(63, 3); 66 61 this.fittingComboBox.Name = "fittingComboBox"; 67 62 this.fittingComboBox.Size = new System.Drawing.Size(214, 21); … … 82 77 // 83 78 this.addLineToChart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 84 this.addLineToChart.Location = new System.Drawing.Point( 491, 3);79 this.addLineToChart.Location = new System.Drawing.Point(283, 3); 85 80 this.addLineToChart.Name = "addLineToChart"; 86 81 this.addLineToChart.Size = new System.Drawing.Size(100, 23); … … 97 92 this.dataRowComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 98 93 this.dataRowComboBox.FormattingEnabled = true; 99 this.dataRowComboBox.Location = new System.Drawing.Point( 70, 33);94 this.dataRowComboBox.Location = new System.Drawing.Point(69, 36); 100 95 this.dataRowComboBox.Name = "dataRowComboBox"; 101 this.dataRowComboBox.Size = new System.Drawing.Size( 829, 21);96 this.dataRowComboBox.Size = new System.Drawing.Size(521, 21); 102 97 this.dataRowComboBox.TabIndex = 8; 103 98 this.dataRowComboBox.SelectedIndexChanged += new System.EventHandler(this.dataRowComboBox_SelectedIndexChanged); … … 106 101 // 107 102 this.label2.AutoSize = true; 108 this.label2.Location = new System.Drawing.Point( 4, 36);103 this.label2.Location = new System.Drawing.Point(3, 39); 109 104 this.label2.Name = "label2"; 110 105 this.label2.Size = new System.Drawing.Size(55, 13); … … 115 110 // 116 111 this.label1.AutoSize = true; 117 this.label1.Location = new System.Drawing.Point( 4, 6);112 this.label1.Location = new System.Drawing.Point(3, 9); 118 113 this.label1.Name = "label1"; 119 114 this.label1.Size = new System.Drawing.Size(60, 13); … … 127 122 this.dataTableComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 128 123 this.dataTableComboBox.FormattingEnabled = true; 129 this.dataTableComboBox.Location = new System.Drawing.Point( 70, 3);124 this.dataTableComboBox.Location = new System.Drawing.Point(69, 6); 130 125 this.dataTableComboBox.Name = "dataTableComboBox"; 131 this.dataTableComboBox.Size = new System.Drawing.Size( 829, 21);126 this.dataTableComboBox.Size = new System.Drawing.Size(521, 21); 132 127 this.dataTableComboBox.TabIndex = 5; 133 128 this.dataTableComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTableComboBox_SelectedIndexChanged); … … 140 135 this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; 141 136 this.stringConvertibleMatrixView.Content = null; 142 this.stringConvertibleMatrixView.Location = new System.Drawing.Point( 3, 60);137 this.stringConvertibleMatrixView.Location = new System.Drawing.Point(2, 63); 143 138 this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView"; 144 139 this.stringConvertibleMatrixView.ReadOnly = true; 145 140 this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = true; 146 141 this.stringConvertibleMatrixView.ShowStatisticalInformation = true; 147 this.stringConvertibleMatrixView.Size = new System.Drawing.Size( 896, 417);142 this.stringConvertibleMatrixView.Size = new System.Drawing.Size(588, 322); 148 143 this.stringConvertibleMatrixView.TabIndex = 0; 149 144 // 150 // splitContainer151 //152 this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)153 | System.Windows.Forms.AnchorStyles.Left)154 | System.Windows.Forms.AnchorStyles.Right)));155 this.splitContainer.Location = new System.Drawing.Point(3, 3);156 this.splitContainer.Name = "splitContainer";157 //158 // splitContainer.Panel1159 //160 this.splitContainer.Panel1.Controls.Add(this.splitContainer1);161 this.splitContainer.Panel1.Controls.Add(this.stringConvertibleMatrixView);162 this.splitContainer.Panel1.Controls.Add(this.dataTableComboBox);163 this.splitContainer.Panel1.Controls.Add(this.label1);164 this.splitContainer.Panel1.Controls.Add(this.label2);165 this.splitContainer.Panel1.Controls.Add(this.dataRowComboBox);166 //167 // splitContainer.Panel2168 //169 this.splitContainer.Panel2.Controls.Add(this.infoLabel);170 this.splitContainer.Size = new System.Drawing.Size(938, 515);171 this.splitContainer.SplitterDistance = 902;172 this.splitContainer.TabIndex = 13;173 //174 145 // splitContainer1 175 146 // 176 147 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 177 148 | System.Windows.Forms.AnchorStyles.Right))); 178 this.splitContainer1.Location = new System.Drawing.Point( 3, 483);149 this.splitContainer1.Location = new System.Drawing.Point(6, 391); 179 150 this.splitContainer1.Name = "splitContainer1"; 180 151 // … … 187 158 this.splitContainer1.Panel2.Controls.Add(this.fittingComboBox); 188 159 this.splitContainer1.Panel2.Controls.Add(this.addLineToChart); 189 this.splitContainer1.Size = new System.Drawing.Size( 896, 29);190 this.splitContainer1.SplitterDistance = 298;160 this.splitContainer1.Size = new System.Drawing.Size(584, 29); 161 this.splitContainer1.SplitterDistance = 194; 191 162 this.splitContainer1.TabIndex = 13; 192 163 // … … 195 166 this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 196 167 this.infoLabel.Image = ((System.Drawing.Image)(resources.GetObject("infoLabel.Image"))); 197 this.infoLabel.Location = new System.Drawing.Point( 13, 3);168 this.infoLabel.Location = new System.Drawing.Point(596, 6); 198 169 this.infoLabel.Name = "infoLabel"; 199 170 this.infoLabel.Size = new System.Drawing.Size(16, 16); … … 203 174 // ChartAnalysisView 204 175 // 205 this.Controls.Add(this.splitContainer); 176 this.Controls.Add(this.splitContainer1); 177 this.Controls.Add(this.infoLabel); 178 this.Controls.Add(this.stringConvertibleMatrixView); 179 this.Controls.Add(this.dataTableComboBox); 180 this.Controls.Add(this.label1); 181 this.Controls.Add(this.dataRowComboBox); 182 this.Controls.Add(this.label2); 206 183 this.Name = "ChartAnalysisView"; 207 this.Size = new System.Drawing.Size(944, 521); 208 this.splitContainer.Panel1.ResumeLayout(false); 209 this.splitContainer.Panel1.PerformLayout(); 210 this.splitContainer.Panel2.ResumeLayout(false); 211 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit(); 212 this.splitContainer.ResumeLayout(false); 184 this.Size = new System.Drawing.Size(612, 423); 213 185 this.splitContainer1.Panel1.ResumeLayout(false); 214 186 this.splitContainer1.Panel2.ResumeLayout(false); … … 216 188 this.splitContainer1.ResumeLayout(false); 217 189 this.ResumeLayout(false); 190 this.PerformLayout(); 218 191 219 192 } … … 228 201 private System.Windows.Forms.Button addValuesButton; 229 202 private System.Windows.Forms.ComboBox fittingComboBox; 230 private System.Windows.Forms.SplitContainer splitContainer;231 203 private System.Windows.Forms.Label infoLabel; 232 204 private System.Windows.Forms.SplitContainer splitContainer1; -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.resx
r9908 r9909 185 185 </value> 186 186 </data> 187 <metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 188 <value>17, 17</value> 189 </metadata> 190 <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 191 <value>58</value> 192 </metadata> 187 193 </root>
Note: See TracChangeset
for help on using the changeset viewer.