Changeset 9135 for branches/ClassificationModelComparison/HeuristicLab.Algorithms.DataAnalysis.Views/3.4
- Timestamp:
- 01/09/13 16:27:12 (12 years ago)
- Location:
- branches/ClassificationModelComparison/HeuristicLab.Algorithms.DataAnalysis.Views/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ClassificationModelComparison/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/OneRClassificationModelView.Designer.cs
r9119 r9135 46 46 private void InitializeComponent() { 47 47 this.dataGridView = new System.Windows.Forms.DataGridView(); 48 this.variableLabel = new System.Windows.Forms.Label();49 48 this.intervalstart = new System.Windows.Forms.DataGridViewTextBoxColumn(); 50 49 this.intervalend = new System.Windows.Forms.DataGridViewTextBoxColumn(); 51 50 this.classcolumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); 51 this.variableLabel = new System.Windows.Forms.Label(); 52 this.MissingValuesClassLabel = new System.Windows.Forms.Label(); 52 53 ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); 53 54 this.SuspendLayout(); … … 68 69 this.dataGridView.Name = "dataGridView"; 69 70 this.dataGridView.ReadOnly = true; 70 this.dataGridView.Size = new System.Drawing.Size(3 61, 196);71 this.dataGridView.Size = new System.Drawing.Size(389, 230); 71 72 this.dataGridView.TabIndex = 0; 72 //73 // variableLabel74 //75 this.variableLabel.AutoSize = true;76 this.variableLabel.Location = new System.Drawing.Point(3, 10);77 this.variableLabel.Name = "variableLabel";78 this.variableLabel.Size = new System.Drawing.Size(48, 13);79 this.variableLabel.TabIndex = 1;80 this.variableLabel.Text = "Variable:";81 73 // 82 74 // intervalstart … … 98 90 this.classcolumn.ReadOnly = true; 99 91 // 92 // variableLabel 93 // 94 this.variableLabel.AutoSize = true; 95 this.variableLabel.Location = new System.Drawing.Point(3, 10); 96 this.variableLabel.Name = "variableLabel"; 97 this.variableLabel.Size = new System.Drawing.Size(48, 13); 98 this.variableLabel.TabIndex = 1; 99 this.variableLabel.Text = "Variable:"; 100 // 101 // MissingValuesClassLabel 102 // 103 this.MissingValuesClassLabel.Anchor = System.Windows.Forms.AnchorStyles.Top; 104 this.MissingValuesClassLabel.AutoSize = true; 105 this.MissingValuesClassLabel.Location = new System.Drawing.Point(165, 10); 106 this.MissingValuesClassLabel.Name = "MissingValuesClassLabel"; 107 this.MissingValuesClassLabel.Size = new System.Drawing.Size(118, 13); 108 this.MissingValuesClassLabel.TabIndex = 2; 109 this.MissingValuesClassLabel.Text = "Class of missing values:"; 110 // 100 111 // OneRClassificationModelView 101 112 // 102 113 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 103 114 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 115 this.Controls.Add(this.MissingValuesClassLabel); 104 116 this.Controls.Add(this.variableLabel); 105 117 this.Controls.Add(this.dataGridView); 106 118 this.Name = "OneRClassificationModelView"; 107 this.Size = new System.Drawing.Size(3 67, 231);119 this.Size = new System.Drawing.Size(395, 265); 108 120 ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); 109 121 this.ResumeLayout(false); … … 119 131 private System.Windows.Forms.DataGridViewTextBoxColumn intervalend; 120 132 private System.Windows.Forms.DataGridViewTextBoxColumn classcolumn; 133 private System.Windows.Forms.Label MissingValuesClassLabel; 121 134 } 122 135 } -
branches/ClassificationModelComparison/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/OneRClassificationModelView.cs
r9119 r9135 49 49 if (Content == null) { 50 50 variableLabel.Text = "Variable: "; 51 MissingValuesClassLabel.Text = "Class of missing values: "; 51 52 dataGridView.Rows.Clear(); 52 53 } else { 53 54 variableLabel.Text = "Variable: " + Content.Variable; 55 MissingValuesClassLabel.Text = "Class of missing values: " + Content.MissingValuesClass; 54 56 55 57 dataGridView.RowCount = Content.Classes.Length;
Note: See TracChangeset
for help on using the changeset viewer.