Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/24/12 18:48:16 (12 years ago)
Author:
sforsten
Message:

#1292:

  • NaN values are used, if the calculation is invalid (e.g. missing values, infinity etc.)
  • Variables can now be filtered. Initially allowed input variables and target variable are shown, but with a right click a dialog can be opened to select variables, which shall be shown
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/AbstractFeatureCorrelationView.Designer.cs

    r8578 r8689  
    4646    /// </summary>
    4747    private void InitializeComponent() {
     48      this.components = new System.ComponentModel.Container();
    4849      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AbstractFeatureCorrelationView));
    4950      this.DataGridView = new System.Windows.Forms.DataGridView();
     
    5960      this.CalculatingPanel = new System.Windows.Forms.Panel();
    6061      this.CalculatingLabel = new System.Windows.Forms.Label();
     62      this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     63      this.ShowHideColumns = new System.Windows.Forms.ToolStripMenuItem();
    6164      ((System.ComponentModel.ISupportInitialize)(this.DataGridView)).BeginInit();
    6265      ((System.ComponentModel.ISupportInitialize)(this.PictureBox)).BeginInit();
     
    6669      this.SplitContainer.SuspendLayout();
    6770      this.CalculatingPanel.SuspendLayout();
     71      this.contextMenu.SuspendLayout();
    6872      this.SuspendLayout();
    6973      //
     
    8488      this.DataGridView.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.DataGridView_ColumnHeaderMouseClick);
    8589      this.DataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DataGridView_KeyDown);
     90      this.DataGridView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.DataGridView_MouseClick);
    8691      //
    8792      // HeatMapProgressBar
     
    211216      this.CalculatingLabel.TabIndex = 10;
    212217      this.CalculatingLabel.Text = "Calculating correlation...";
     218      //
     219      // contextMenu
     220      //
     221      this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     222            this.ShowHideColumns});
     223      this.contextMenu.Name = "contextMenu";
     224      this.contextMenu.Size = new System.Drawing.Size(191, 26);
     225      //
     226      // ShowHideColumns
     227      //
     228      this.ShowHideColumns.Name = "ShowHideColumns";
     229      this.ShowHideColumns.Size = new System.Drawing.Size(190, 22);
     230      this.ShowHideColumns.Text = "Show / Hide Columns";
     231      this.ShowHideColumns.Click += new System.EventHandler(this.ShowHideColumns_Click);
    213232      //
    214233      // AbstractFeatureCorrelationView
     
    231250      this.CalculatingPanel.ResumeLayout(false);
    232251      this.CalculatingPanel.PerformLayout();
     252      this.contextMenu.ResumeLayout(false);
    233253      this.ResumeLayout(false);
    234254
     
    249269    protected System.Windows.Forms.Panel CalculatingPanel;
    250270    protected System.Windows.Forms.Label CalculatingLabel;
     271    protected System.Windows.Forms.ContextMenuStrip contextMenu;
     272    protected System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
    251273
    252274  }
Note: See TracChangeset for help on using the changeset viewer.