Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingFeatureCorrelationView.Designer.cs @ 10971

Last change on this file since 10971 was 10908, checked in by mleitner, 10 years ago

Add Feature correlation matrix, Add limit for distinct values in histogramm classification.

File size: 11.8 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23
24namespace HeuristicLab.Problems.DataAnalysis.Views {
25  partial class PreprocessingFeatureCorrelationView {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Component Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.components = new System.ComponentModel.Container();
50      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AbstractFeatureCorrelationView));
51      this.progressBar = new System.Windows.Forms.ProgressBar();
52      this.partitionComboBox = new System.Windows.Forms.ComboBox();
53      this.correlationCalcLabel = new System.Windows.Forms.Label();
54      this.correlationCalcComboBox = new System.Windows.Forms.ComboBox();
55      this.partitionLabel = new System.Windows.Forms.Label();
56      this.minimumLabel = new System.Windows.Forms.Label();
57      this.maximumLabel = new System.Windows.Forms.Label();
58      this.pictureBox = new System.Windows.Forms.PictureBox();
59      this.splitContainer = new System.Windows.Forms.SplitContainer();
60      this.progressPanel = new System.Windows.Forms.Panel();
61      this.progressLabel = new System.Windows.Forms.Label();
62      this.dataView = new HeuristicLab.Data.Views.EnhancedStringConvertibleMatrixView();
63      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
64      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
65      this.splitContainer.Panel1.SuspendLayout();
66      this.splitContainer.Panel2.SuspendLayout();
67      this.splitContainer.SuspendLayout();
68      this.progressPanel.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // HeatMapProgressBar
72      //
73      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
74      this.progressBar.Location = new System.Drawing.Point(25, 46);
75      this.progressBar.Name = "HeatMapProgressBar";
76      this.progressBar.RightToLeft = System.Windows.Forms.RightToLeft.No;
77      this.progressBar.Size = new System.Drawing.Size(154, 21);
78      this.progressBar.TabIndex = 9;
79      //
80      // PartitionComboBox
81      //
82      this.partitionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
83      this.partitionComboBox.FormattingEnabled = true;
84      this.partitionComboBox.Location = new System.Drawing.Point(333, 3);
85      this.partitionComboBox.Name = "PartitionComboBox";
86      this.partitionComboBox.Size = new System.Drawing.Size(142, 21);
87      this.partitionComboBox.TabIndex = 8;
88      this.partitionComboBox.SelectionChangeCommitted += new System.EventHandler(this.PartitionComboBox_SelectedChangeCommitted);
89      //
90      // CorrelationCalcLabel
91      //
92      this.correlationCalcLabel.AutoSize = true;
93      this.correlationCalcLabel.Location = new System.Drawing.Point(0, 6);
94      this.correlationCalcLabel.Name = "CorrelationCalcLabel";
95      this.correlationCalcLabel.Size = new System.Drawing.Size(104, 13);
96      this.correlationCalcLabel.TabIndex = 7;
97      this.correlationCalcLabel.Text = "Correlation Measure:";
98      //
99      // CorrelationCalcComboBox
100      //
101      this.correlationCalcComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
102      this.correlationCalcComboBox.FormattingEnabled = true;
103      this.correlationCalcComboBox.Location = new System.Drawing.Point(110, 3);
104      this.correlationCalcComboBox.Name = "CorrelationCalcComboBox";
105      this.correlationCalcComboBox.Size = new System.Drawing.Size(163, 21);
106      this.correlationCalcComboBox.TabIndex = 6;
107      this.correlationCalcComboBox.SelectionChangeCommitted += new System.EventHandler(this.CorrelationMeasureComboBox_SelectedChangeCommitted);
108      //
109      // PartitionLabel
110      //
111      this.partitionLabel.AutoSize = true;
112      this.partitionLabel.Location = new System.Drawing.Point(279, 6);
113      this.partitionLabel.Name = "PartitionLabel";
114      this.partitionLabel.Size = new System.Drawing.Size(48, 13);
115      this.partitionLabel.TabIndex = 10;
116      this.partitionLabel.Text = "Partition:";
117      //
118      // minimumLabel
119      //
120      this.minimumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
121      this.minimumLabel.BackColor = System.Drawing.Color.Transparent;
122      this.minimumLabel.Location = new System.Drawing.Point(487, 314);
123      this.minimumLabel.Name = "minimumLabel";
124      this.minimumLabel.Size = new System.Drawing.Size(73, 19);
125      this.minimumLabel.TabIndex = 13;
126      this.minimumLabel.Text = "0.0";
127      this.minimumLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
128      //
129      // maximumLabel
130      //
131      this.maximumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
132      this.maximumLabel.BackColor = System.Drawing.Color.Transparent;
133      this.maximumLabel.Location = new System.Drawing.Point(487, 2);
134      this.maximumLabel.Name = "maximumLabel";
135      this.maximumLabel.Size = new System.Drawing.Size(73, 25);
136      this.maximumLabel.TabIndex = 12;
137      this.maximumLabel.Text = "1.0";
138      this.maximumLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
139      //
140      // PictureBox
141      //
142      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
143            | System.Windows.Forms.AnchorStyles.Right)));
144      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
145      this.pictureBox.Image = ((System.Drawing.Image)(resources.GetObject("PictureBox.Image")));
146      this.pictureBox.Location = new System.Drawing.Point(507, 30);
147      this.pictureBox.Name = "PictureBox";
148      this.pictureBox.Size = new System.Drawing.Size(35, 281);
149      this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
150      this.pictureBox.TabIndex = 15;
151      this.pictureBox.TabStop = false;
152      //
153      // SplitContainer
154      //
155      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
156            | System.Windows.Forms.AnchorStyles.Left)
157            | System.Windows.Forms.AnchorStyles.Right)));
158      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
159      this.splitContainer.IsSplitterFixed = true;
160      this.splitContainer.Location = new System.Drawing.Point(3, 3);
161      this.splitContainer.Name = "SplitContainer";
162      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
163      //
164      // SplitContainer.Panel1
165      //
166      this.splitContainer.Panel1.Controls.Add(this.correlationCalcLabel);
167      this.splitContainer.Panel1.Controls.Add(this.correlationCalcComboBox);
168      this.splitContainer.Panel1.Controls.Add(this.partitionComboBox);
169      this.splitContainer.Panel1.Controls.Add(this.partitionLabel);
170      //
171      // SplitContainer.Panel2
172      //
173      this.splitContainer.Panel2.Controls.Add(this.progressPanel);
174      this.splitContainer.Panel2.Controls.Add(this.dataView);
175      this.splitContainer.Size = new System.Drawing.Size(475, 330);
176      this.splitContainer.SplitterDistance = 25;
177      this.splitContainer.TabIndex = 16;
178      //
179      // CalculatingPanel
180      //
181      this.progressPanel.Anchor = System.Windows.Forms.AnchorStyles.None;
182      this.progressPanel.Controls.Add(this.progressLabel);
183      this.progressPanel.Controls.Add(this.progressBar);
184      this.progressPanel.Location = new System.Drawing.Point(138, 95);
185      this.progressPanel.Name = "CalculatingPanel";
186      this.progressPanel.Size = new System.Drawing.Size(200, 81);
187      this.progressPanel.TabIndex = 10;
188      //
189      // CalculatingLabel
190      //
191      this.progressLabel.AutoSize = true;
192      this.progressLabel.Location = new System.Drawing.Point(42, 19);
193      this.progressLabel.Name = "CalculatingLabel";
194      this.progressLabel.Size = new System.Drawing.Size(120, 13);
195      this.progressLabel.TabIndex = 10;
196      this.progressLabel.Text = "Calculating correlation...";
197      //
198      // DataGridView
199      //
200      this.dataView.Dock = System.Windows.Forms.DockStyle.Fill;
201      this.dataView.Location = new System.Drawing.Point(0, 0);
202      this.dataView.Name = "DataView";
203      this.dataView.ReadOnly = true;
204      this.dataView.Size = new System.Drawing.Size(475, 301);
205      this.dataView.TabIndex = 0;
206      //
207      // AbstractFeatureCorrelationView
208      //
209      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
210      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
211      this.Controls.Add(this.splitContainer);
212      this.Controls.Add(this.minimumLabel);
213      this.Controls.Add(this.pictureBox);
214      this.Controls.Add(this.maximumLabel);
215      this.Name = "AbstractFeatureCorrelationView";
216      this.Size = new System.Drawing.Size(569, 336);
217      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
218      this.splitContainer.Panel1.ResumeLayout(false);
219      this.splitContainer.Panel1.PerformLayout();
220      this.splitContainer.Panel2.ResumeLayout(false);
221      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
222      this.splitContainer.ResumeLayout(false);
223      this.progressPanel.ResumeLayout(false);
224      this.progressPanel.PerformLayout();
225      this.ResumeLayout(false);
226
227    }
228
229    #endregion
230
231    protected System.Windows.Forms.ProgressBar progressBar;
232    protected System.Windows.Forms.ComboBox partitionComboBox;
233    protected System.Windows.Forms.Label correlationCalcLabel;
234    protected System.Windows.Forms.ComboBox correlationCalcComboBox;
235    protected System.Windows.Forms.Label partitionLabel;
236    protected System.Windows.Forms.Label minimumLabel;
237    protected System.Windows.Forms.Label maximumLabel;
238    protected System.Windows.Forms.PictureBox pictureBox;
239    protected System.Windows.Forms.SplitContainer splitContainer;
240    protected System.Windows.Forms.Panel progressPanel;
241    protected System.Windows.Forms.Label progressLabel;
242    protected HeuristicLab.Data.Views.EnhancedStringConvertibleMatrixView dataView;
243
244  }
245}
Note: See TracBrowser for help on using the repository browser.