Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2994-AutoDiffForIntervals/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingFeatureCorrelationView.Designer.cs @ 17209

Last change on this file since 17209 was 17209, checked in by gkronber, 5 years ago

#2994: merged r17132:17198 from trunk to branch

File size: 6.0 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 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.DataPreprocessing.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      this.checkInputsTargetButton = new System.Windows.Forms.Button();
51      this.uncheckAllButton = new System.Windows.Forms.Button();
52      this.checkAllButton = new System.Windows.Forms.Button();
53      this.correlationView = new HeuristicLab.Problems.DataAnalysis.Views.FeatureCorrelationView();
54      this.variablesLabel = new System.Windows.Forms.Label();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.SuspendLayout();
57      //
58      // checkInputsTargetButton
59      //
60      this.checkInputsTargetButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.Inputs;
61      this.checkInputsTargetButton.Location = new System.Drawing.Point(736, 5);
62      this.checkInputsTargetButton.Name = "checkInputsTargetButton";
63      this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
64      this.checkInputsTargetButton.TabIndex = 14;
65      this.toolTip.SetToolTip(this.checkInputsTargetButton, "Inputs & Target Variables");
66      this.checkInputsTargetButton.UseVisualStyleBackColor = true;
67      this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
68      //
69      // uncheckAllButton
70      //
71      this.uncheckAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.None;
72      this.uncheckAllButton.Location = new System.Drawing.Point(766, 5);
73      this.uncheckAllButton.Name = "uncheckAllButton";
74      this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
75      this.uncheckAllButton.TabIndex = 12;
76      this.toolTip.SetToolTip(this.uncheckAllButton, "None");
77      this.uncheckAllButton.UseVisualStyleBackColor = true;
78      this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
79      //
80      // checkAllButton
81      //
82      this.checkAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.All;
83      this.checkAllButton.Location = new System.Drawing.Point(706, 5);
84      this.checkAllButton.Name = "checkAllButton";
85      this.checkAllButton.Size = new System.Drawing.Size(24, 24);
86      this.checkAllButton.TabIndex = 13;
87      this.toolTip.SetToolTip(this.checkAllButton, "All");
88      this.checkAllButton.UseVisualStyleBackColor = true;
89      this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
90      //
91      // correlationView
92      //
93      this.correlationView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94            | System.Windows.Forms.AnchorStyles.Left)
95            | System.Windows.Forms.AnchorStyles.Right)));
96      this.correlationView.Caption = "Feature Correlation View";
97      this.correlationView.Content = null;
98      this.correlationView.Location = new System.Drawing.Point(0, 0);
99      this.correlationView.Name = "correlationView";
100      this.correlationView.ReadOnly = false;
101      this.correlationView.Size = new System.Drawing.Size(1013, 640);
102      this.correlationView.TabIndex = 18;
103      //
104      // variablesLabel
105      //
106      this.variablesLabel.AutoSize = true;
107      this.variablesLabel.Location = new System.Drawing.Point(650, 11);
108      this.variablesLabel.Name = "variablesLabel";
109      this.variablesLabel.Size = new System.Drawing.Size(50, 13);
110      this.variablesLabel.TabIndex = 15;
111      this.variablesLabel.Text = "Variables";
112      //
113      // PreprocessingFeatureCorrelationView
114      //
115      this.Controls.Add(this.variablesLabel);
116      this.Controls.Add(this.checkInputsTargetButton);
117      this.Controls.Add(this.uncheckAllButton);
118      this.Controls.Add(this.checkAllButton);
119      this.Controls.Add(this.correlationView);
120      this.Name = "PreprocessingFeatureCorrelationView";
121      this.Size = new System.Drawing.Size(1013, 640);
122      this.ResumeLayout(false);
123      this.PerformLayout();
124
125    }
126
127    #endregion
128    private System.Windows.Forms.Button checkInputsTargetButton;
129    private System.Windows.Forms.Button uncheckAllButton;
130    private System.Windows.Forms.Button checkAllButton;
131    private HeuristicLab.Problems.DataAnalysis.Views.FeatureCorrelationView correlationView;
132    private System.Windows.Forms.ToolTip toolTip;
133    private System.Windows.Forms.Label variablesLabel;
134  }
135}
Note: See TracBrowser for help on using the repository browser.