Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/ProblemDataView.Designer.cs @ 8578

Last change on this file since 8578 was 8578, checked in by sforsten, 12 years ago

#1292:

  • added ProblemDataView which has a button to open the feature correlation
  • added abstract base class for feature correlations
  • added caches for the feature correlation
  • created own class for calculation of feature correlation
  • changed SelectedItemChanged to SelectionChangeCommitted events, so the correlation is only calculated if the user changes the selection
File size: 2.6 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class ProblemDataView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.FeatureCorrelationButton = new System.Windows.Forms.Button();
27      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
28      this.SuspendLayout();
29      //
30      // nameTextBox
31      //
32      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
33      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
34      //
35      // FeatureCorrelationButton
36      //
37      this.FeatureCorrelationButton.Location = new System.Drawing.Point(184, 45);
38      this.FeatureCorrelationButton.Name = "FeatureCorrelationButton";
39      this.FeatureCorrelationButton.Size = new System.Drawing.Size(121, 24);
40      this.FeatureCorrelationButton.TabIndex = 4;
41      this.FeatureCorrelationButton.Text = "Feature Correlation";
42      this.FeatureCorrelationButton.UseVisualStyleBackColor = true;
43      this.FeatureCorrelationButton.Click += new System.EventHandler(this.FeatureCorrelationButton_Click);
44      //
45      // ProblemDataView
46      //
47      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
48      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49      this.Controls.Add(this.FeatureCorrelationButton);
50      this.Name = "ProblemDataView";
51      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
52      this.Controls.SetChildIndex(this.infoLabel, 0);
53      this.Controls.SetChildIndex(this.nameTextBox, 0);
54      this.Controls.SetChildIndex(this.nameLabel, 0);
55      this.Controls.SetChildIndex(this.FeatureCorrelationButton, 0);
56      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
57      this.ResumeLayout(false);
58      this.PerformLayout();
59
60    }
61
62    #endregion
63
64    protected System.Windows.Forms.Button FeatureCorrelationButton;
65
66  }
67}
Note: See TracBrowser for help on using the repository browser.