Changeset 10316
- Timestamp:
- 01/08/14 16:43:55 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10315 r10316 224 224 </ProjectReference> 225 225 </ItemGroup> 226 <ItemGroup> 227 <EmbeddedResource Include="Properties\Resources.resx"> 228 <Generator>ResXFileCodeGenerator</Generator> 229 <LastGenOutput>Resources.Designer.cs</LastGenOutput> 230 </EmbeddedResource> 231 </ItemGroup> 226 232 227 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 233 228 <PropertyGroup> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/StatisticsView.Designer.cs
r10313 r10316 24 24 /// </summary> 25 25 private void InitializeComponent() { 26 this.lblRows = new System.Windows.Forms.Label(); 27 this.txtRows = new System.Windows.Forms.Label(); 28 this.lblColumns = new System.Windows.Forms.Label(); 29 this.lblMissingValuesTotal = new System.Windows.Forms.Label(); 30 this.txtColumns = new System.Windows.Forms.Label(); 31 this.txtNumericColumns = new System.Windows.Forms.Label(); 32 this.txtNominalColumns = new System.Windows.Forms.Label(); 33 this.lblNumericColumns = new System.Windows.Forms.Label(); 34 this.lblNominalColumns = new System.Windows.Forms.Label(); 35 this.txtMissingValuesTotal = new System.Windows.Forms.Label(); 36 this.dataGridView1 = new System.Windows.Forms.DataGridView(); 37 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); 26 38 this.SuspendLayout(); 39 // 40 // lblRows 41 // 42 this.lblRows.AutoSize = true; 43 this.lblRows.Location = new System.Drawing.Point(3, 11); 44 this.lblRows.Name = "lblRows"; 45 this.lblRows.Size = new System.Drawing.Size(34, 13); 46 this.lblRows.TabIndex = 0; 47 this.lblRows.Text = "Rows"; 48 // 49 // txtRows 50 // 51 this.txtRows.AutoSize = true; 52 this.txtRows.Location = new System.Drawing.Point(115, 11); 53 this.txtRows.Name = "txtRows"; 54 this.txtRows.Size = new System.Drawing.Size(19, 13); 55 this.txtRows.TabIndex = 1; 56 this.txtRows.Text = "12"; 57 // 58 // lblColumns 59 // 60 this.lblColumns.AutoSize = true; 61 this.lblColumns.Location = new System.Drawing.Point(3, 31); 62 this.lblColumns.Name = "lblColumns"; 63 this.lblColumns.Size = new System.Drawing.Size(47, 13); 64 this.lblColumns.TabIndex = 2; 65 this.lblColumns.Text = "Columns"; 66 // 67 // lblMissingValuesTotal 68 // 69 this.lblMissingValuesTotal.AutoSize = true; 70 this.lblMissingValuesTotal.Location = new System.Drawing.Point(3, 92); 71 this.lblMissingValuesTotal.Name = "lblMissingValuesTotal"; 72 this.lblMissingValuesTotal.Size = new System.Drawing.Size(100, 13); 73 this.lblMissingValuesTotal.TabIndex = 3; 74 this.lblMissingValuesTotal.Text = "Missing Values total"; 75 // 76 // txtColumns 77 // 78 this.txtColumns.AutoSize = true; 79 this.txtColumns.Location = new System.Drawing.Point(115, 31); 80 this.txtColumns.Name = "txtColumns"; 81 this.txtColumns.Size = new System.Drawing.Size(25, 13); 82 this.txtColumns.TabIndex = 1; 83 this.txtColumns.Text = "123"; 84 // 85 // txtNumericColumns 86 // 87 this.txtNumericColumns.AutoSize = true; 88 this.txtNumericColumns.Location = new System.Drawing.Point(115, 51); 89 this.txtNumericColumns.Name = "txtNumericColumns"; 90 this.txtNumericColumns.Size = new System.Drawing.Size(25, 13); 91 this.txtNumericColumns.TabIndex = 1; 92 this.txtNumericColumns.Text = "456"; 93 // 94 // txtNominalColumns 95 // 96 this.txtNominalColumns.AutoSize = true; 97 this.txtNominalColumns.Location = new System.Drawing.Point(115, 72); 98 this.txtNominalColumns.Name = "txtNominalColumns"; 99 this.txtNominalColumns.Size = new System.Drawing.Size(25, 13); 100 this.txtNominalColumns.TabIndex = 1; 101 this.txtNominalColumns.Text = "789"; 102 // 103 // lblNumericColumns 104 // 105 this.lblNumericColumns.AutoSize = true; 106 this.lblNumericColumns.Location = new System.Drawing.Point(3, 51); 107 this.lblNumericColumns.Name = "lblNumericColumns"; 108 this.lblNumericColumns.Size = new System.Drawing.Size(89, 13); 109 this.lblNumericColumns.TabIndex = 3; 110 this.lblNumericColumns.Text = "Numeric Columns"; 111 // 112 // lblNominalColumns 113 // 114 this.lblNominalColumns.AutoSize = true; 115 this.lblNominalColumns.Location = new System.Drawing.Point(3, 72); 116 this.lblNominalColumns.Name = "lblNominalColumns"; 117 this.lblNominalColumns.Size = new System.Drawing.Size(88, 13); 118 this.lblNominalColumns.TabIndex = 3; 119 this.lblNominalColumns.Text = "Nominal Columns"; 120 // 121 // txtMissingValuesTotal 122 // 123 this.txtMissingValuesTotal.AutoSize = true; 124 this.txtMissingValuesTotal.Location = new System.Drawing.Point(115, 92); 125 this.txtMissingValuesTotal.Name = "txtMissingValuesTotal"; 126 this.txtMissingValuesTotal.Size = new System.Drawing.Size(25, 13); 127 this.txtMissingValuesTotal.TabIndex = 1; 128 this.txtMissingValuesTotal.Text = "102"; 129 // 130 // dataGridView1 131 // 132 this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 133 this.dataGridView1.Location = new System.Drawing.Point(5, 117); 134 this.dataGridView1.Name = "dataGridView1"; 135 this.dataGridView1.Size = new System.Drawing.Size(531, 278); 136 this.dataGridView1.TabIndex = 4; 27 137 // 28 138 // StatisticsView … … 30 140 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 31 141 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 142 this.Controls.Add(this.dataGridView1); 143 this.Controls.Add(this.lblNominalColumns); 144 this.Controls.Add(this.lblNumericColumns); 145 this.Controls.Add(this.lblMissingValuesTotal); 146 this.Controls.Add(this.txtMissingValuesTotal); 147 this.Controls.Add(this.txtNominalColumns); 148 this.Controls.Add(this.lblColumns); 149 this.Controls.Add(this.txtNumericColumns); 150 this.Controls.Add(this.txtColumns); 151 this.Controls.Add(this.txtRows); 152 this.Controls.Add(this.lblRows); 32 153 this.Name = "StatisticsView"; 33 154 this.Size = new System.Drawing.Size(549, 408); 155 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); 34 156 this.ResumeLayout(false); 157 this.PerformLayout(); 35 158 36 159 } 37 160 38 161 #endregion 162 163 private System.Windows.Forms.Label lblRows; 164 private System.Windows.Forms.Label txtRows; 165 private System.Windows.Forms.Label lblColumns; 166 private System.Windows.Forms.Label lblMissingValuesTotal; 167 private System.Windows.Forms.Label txtColumns; 168 private System.Windows.Forms.Label txtNumericColumns; 169 private System.Windows.Forms.Label txtNominalColumns; 170 private System.Windows.Forms.Label lblNumericColumns; 171 private System.Windows.Forms.Label lblNominalColumns; 172 private System.Windows.Forms.Label txtMissingValuesTotal; 173 private System.Windows.Forms.DataGridView dataGridView1; 39 174 } 40 175 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/StatisticsView.cs
r10303 r10316 26 26 public StatisticsView() { 27 27 InitializeComponent(); 28 var logic = Content.StatisticsLogic; 29 txtRows.Text = logic.GetRowCount().ToString(); 30 txtColumns.Text = logic.GetColumnCount().ToString(); 31 txtNumericColumns.Text = logic.GetNumericColumnCount().ToString(); 32 txtNominalColumns.Text = logic.GetNominalColumnCount().ToString(); 28 33 } 29 34
Note: See TracChangeset
for help on using the changeset viewer.