Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DatasetFeatureCorrelation/HeuristicLab.Problems.DataAnalysis.Views/3.4/CorrelationHeatMapView.Designer.cs @ 8318

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

#1292:

  • added cloning method and constructor to ExtendedHeatMap
  • renamed a variable in ExtendedHeatMapView
  • added backwards compatibility code in DataAnalysisProblemData
File size: 5.6 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class CorrelationHeatMapView {
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.CorrelationCalcComboBox = new System.Windows.Forms.ComboBox();
27      this.CorrelationCalcLabel = new System.Windows.Forms.Label();
28      this.PartitionLabel = new System.Windows.Forms.Label();
29      this.PartitionComboBox = new System.Windows.Forms.ComboBox();
30      this.ExtendedHeatMapView = new HeuristicLab.Problems.DataAnalysis.Views.ExtendedHeatMapView();
31      this.HeatMapProgressBar = new System.Windows.Forms.ProgressBar();
32      this.SuspendLayout();
33      //
34      // CorrelationCalcComboBox
35      //
36      this.CorrelationCalcComboBox.FormattingEnabled = true;
37      this.CorrelationCalcComboBox.Location = new System.Drawing.Point(119, 3);
38      this.CorrelationCalcComboBox.Name = "CorrelationCalcComboBox";
39      this.CorrelationCalcComboBox.Size = new System.Drawing.Size(169, 21);
40      this.CorrelationCalcComboBox.TabIndex = 0;
41      this.CorrelationCalcComboBox.SelectedIndexChanged += new System.EventHandler(this.CorrelationCalcComboBox_SelectedIndexChanged);
42      //
43      // CorrelationCalcLabel
44      //
45      this.CorrelationCalcLabel.AutoSize = true;
46      this.CorrelationCalcLabel.Location = new System.Drawing.Point(3, 6);
47      this.CorrelationCalcLabel.Name = "CorrelationCalcLabel";
48      this.CorrelationCalcLabel.Size = new System.Drawing.Size(110, 13);
49      this.CorrelationCalcLabel.TabIndex = 1;
50      this.CorrelationCalcLabel.Text = "Correlation Calculator:";
51      //
52      // PartitionLabel
53      //
54      this.PartitionLabel.AutoSize = true;
55      this.PartitionLabel.Location = new System.Drawing.Point(294, 6);
56      this.PartitionLabel.Name = "PartitionLabel";
57      this.PartitionLabel.Size = new System.Drawing.Size(48, 13);
58      this.PartitionLabel.TabIndex = 2;
59      this.PartitionLabel.Text = "Partition:";
60      //
61      // PartitionComboBox
62      //
63      this.PartitionComboBox.FormattingEnabled = true;
64      this.PartitionComboBox.Location = new System.Drawing.Point(348, 3);
65      this.PartitionComboBox.Name = "PartitionComboBox";
66      this.PartitionComboBox.Size = new System.Drawing.Size(145, 21);
67      this.PartitionComboBox.TabIndex = 3;
68      this.PartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.PartitionComboBox_SelectedIndexChanged);
69      //
70      // ExtendedHeatMap
71      //
72      this.ExtendedHeatMapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
73                  | System.Windows.Forms.AnchorStyles.Left)
74                  | System.Windows.Forms.AnchorStyles.Right)));
75      this.ExtendedHeatMapView.Caption = "ExtendedHeatMap View";
76      this.ExtendedHeatMapView.Content = null;
77      this.ExtendedHeatMapView.Location = new System.Drawing.Point(3, 30);
78      this.ExtendedHeatMapView.Name = "ExtendedHeatMap";
79      this.ExtendedHeatMapView.ReadOnly = false;
80      this.ExtendedHeatMapView.Size = new System.Drawing.Size(627, 275);
81      this.ExtendedHeatMapView.TabIndex = 4;
82      //
83      // HeatMapProgressBar
84      //
85      this.HeatMapProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
86                  | System.Windows.Forms.AnchorStyles.Right)));
87      this.HeatMapProgressBar.Location = new System.Drawing.Point(499, 3);
88      this.HeatMapProgressBar.Name = "HeatMapProgressBar";
89      this.HeatMapProgressBar.RightToLeft = System.Windows.Forms.RightToLeft.No;
90      this.HeatMapProgressBar.Size = new System.Drawing.Size(131, 21);
91      this.HeatMapProgressBar.TabIndex = 5;
92      this.HeatMapProgressBar.Visible = false;
93      //
94      // CorrelationHeatMapView
95      //
96      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
97      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98      this.Controls.Add(this.HeatMapProgressBar);
99      this.Controls.Add(this.PartitionComboBox);
100      this.Controls.Add(this.PartitionLabel);
101      this.Controls.Add(this.CorrelationCalcLabel);
102      this.Controls.Add(this.CorrelationCalcComboBox);
103      this.Controls.Add(this.ExtendedHeatMapView);
104      this.Name = "CorrelationHeatMapView";
105      this.Size = new System.Drawing.Size(633, 308);
106      this.ResumeLayout(false);
107      this.PerformLayout();
108
109    }
110
111    #endregion
112
113    protected System.Windows.Forms.ComboBox CorrelationCalcComboBox;
114    protected System.Windows.Forms.Label CorrelationCalcLabel;
115    protected System.Windows.Forms.Label PartitionLabel;
116    protected System.Windows.Forms.ComboBox PartitionComboBox;
117    protected HeuristicLab.Problems.DataAnalysis.Views.ExtendedHeatMapView ExtendedHeatMapView;
118    private System.Windows.Forms.ProgressBar HeatMapProgressBar;
119  }
120}
Note: See TracBrowser for help on using the repository browser.