Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/FeatureCorrelationView.Designer.cs @ 16535

Last change on this file since 16535 was 15583, checked in by swagner, 6 years ago

#2640: Updated year of copyrights in license headers

File size: 4.5 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2018 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 FeatureCorrelationView {
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.ignoreMissingValuesCheckbox = new System.Windows.Forms.CheckBox();
50      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52      this.splitContainer.Panel1.SuspendLayout();
53      this.splitContainer.Panel2.SuspendLayout();
54      this.splitContainer.SuspendLayout();
55      this.progressPanel.SuspendLayout();
56      this.SuspendLayout();
57      //
58      // minimumLabel
59      //
60      this.minimumLabel.Location = new System.Drawing.Point(707, 434);
61      //
62      // maximumLabel
63      //
64      this.maximumLabel.Location = new System.Drawing.Point(707, 2);
65      //
66      // pictureBox
67      //
68      this.pictureBox.Location = new System.Drawing.Point(727, 30);
69      this.pictureBox.Size = new System.Drawing.Size(35, 401);
70      //
71      // splitContainer
72      //
73      //
74      // splitContainer.Panel1
75      //
76      this.splitContainer.Panel1.Controls.Add(this.ignoreMissingValuesCheckbox);
77      this.splitContainer.Size = new System.Drawing.Size(695, 450);
78      //
79      // dataView
80      //
81      this.dataView.Size = new System.Drawing.Size(695, 421);
82      //
83      // ignoreMissingValuesCheckbox
84      //
85      this.ignoreMissingValuesCheckbox.AutoSize = true;
86      this.ignoreMissingValuesCheckbox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
87      this.ignoreMissingValuesCheckbox.Location = new System.Drawing.Point(481, 6);
88      this.ignoreMissingValuesCheckbox.Name = "ignoreMissingValuesCheckbox";
89      this.ignoreMissingValuesCheckbox.Size = new System.Drawing.Size(122, 17);
90      this.ignoreMissingValuesCheckbox.TabIndex = 11;
91      this.ignoreMissingValuesCheckbox.Text = "Ignore missing values";
92      this.ignoreMissingValuesCheckbox.UseVisualStyleBackColor = true;
93      this.ignoreMissingValuesCheckbox.CheckedChanged += new System.EventHandler(this.ignoreMissingValuesCheckbox_CheckedChanged);
94      //
95      // FeatureCorrelationView
96      //
97      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
98      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
99      this.Name = "FeatureCorrelationView";
100      this.Size = new System.Drawing.Size(789, 456);
101      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
102      this.splitContainer.Panel1.ResumeLayout(false);
103      this.splitContainer.Panel1.PerformLayout();
104      this.splitContainer.Panel2.ResumeLayout(false);
105      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
106      this.splitContainer.ResumeLayout(false);
107      this.progressPanel.ResumeLayout(false);
108      this.progressPanel.PerformLayout();
109      this.ResumeLayout(false);
110
111    }
112    #endregion
113
114    private System.Windows.Forms.CheckBox ignoreMissingValuesCheckbox;
115  }
116}
Note: See TracBrowser for help on using the repository browser.