Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/17 15:12:27 (7 years ago)
Author:
pfleck
Message:

#2709

  • Uses StringMatrix for statistics instead of winforms datagrid.
  • Precheck input/target variables only for statistics.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/StatisticsView.Designer.cs

    r14185 r14545  
    5555      this.lblNominalColumns = new System.Windows.Forms.Label();
    5656      this.txtMissingValuesTotal = new System.Windows.Forms.Label();
    57       this.dataGridView = new System.Windows.Forms.DataGridView();
    58       ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
     57      this.stringMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
    5958      this.SuspendLayout();
    6059      //
     
    149148      this.txtMissingValuesTotal.Text = "102";
    150149      //
    151       // dataGridView
    152       //
    153       this.dataGridView.AllowUserToAddRows = false;
    154       this.dataGridView.AllowUserToDeleteRows = false;
    155       this.dataGridView.AllowUserToOrderColumns = true;
    156       this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    157             | System.Windows.Forms.AnchorStyles.Left)
     150      // stringMatrixView
     151      //
     152      this.stringMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     153            | System.Windows.Forms.AnchorStyles.Left)
    158154            | System.Windows.Forms.AnchorStyles.Right)));
    159       this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
    160       this.dataGridView.Location = new System.Drawing.Point(5, 117);
    161       this.dataGridView.Name = "dataGridView";
    162       this.dataGridView.ReadOnly = true;
    163       this.dataGridView.RowHeadersWidth = 80;
    164       this.dataGridView.Size = new System.Drawing.Size(530, 278);
    165       this.dataGridView.TabIndex = 4;
    166       this.dataGridView.VirtualMode = true;
    167       this.dataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridView_CellValueNeeded);
     155      this.stringMatrixView.Caption = "StringConvertibleMatrix View";
     156      this.stringMatrixView.Content = null;
     157      this.stringMatrixView.Location = new System.Drawing.Point(5, 117);
     158      this.stringMatrixView.Name = "stringMatrixView";
     159      this.stringMatrixView.ReadOnly = true;
     160      this.stringMatrixView.ShowRowsAndColumnsTextBox = false;
     161      this.stringMatrixView.ShowStatisticalInformation = true;
     162      this.stringMatrixView.Size = new System.Drawing.Size(530, 278);
     163      this.stringMatrixView.TabIndex = 4;
    168164      //
    169165      // StatisticsView
     
    171167      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    172168      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    173       this.Controls.Add(this.dataGridView);
     169      this.Controls.Add(this.stringMatrixView);
    174170      this.Controls.Add(this.lblNominalColumns);
    175171      this.Controls.Add(this.lblNumericColumns);
     
    184180      this.Name = "StatisticsView";
    185181      this.Size = new System.Drawing.Size(549, 408);
    186       ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
    187182      this.ResumeLayout(false);
    188183      this.PerformLayout();
     
    202197    private System.Windows.Forms.Label lblNominalColumns;
    203198    private System.Windows.Forms.Label txtMissingValuesTotal;
    204     private System.Windows.Forms.DataGridView dataGridView;
     199    private HeuristicLab.Data.Views.StringConvertibleMatrixView stringMatrixView;
    205200  }
    206201}
Note: See TracChangeset for help on using the changeset viewer.