Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/RunCollectionVariableImpactView.Designer.cs @ 18063

Last change on this file since 18063 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 5.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
23  partial class RunCollectionVariableImpactView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.matrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
48      this.comboBox = new System.Windows.Forms.ComboBox();
49      this.foldsLabel = new System.Windows.Forms.Label();
50      this.variableImpactsGroupBox = new System.Windows.Forms.GroupBox();
51      this.variableImpactsGroupBox.SuspendLayout();
52      this.SuspendLayout();
53      //
54      // matrixView
55      //
56      this.matrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)
58            | System.Windows.Forms.AnchorStyles.Right)));
59      this.matrixView.Caption = "StringConvertibleMatrix View";
60      this.matrixView.Content = null;
61      this.matrixView.Location = new System.Drawing.Point(6, 19);
62      this.matrixView.Name = "matrixView";
63      this.matrixView.ReadOnly = true;
64      this.matrixView.ShowRowsAndColumnsTextBox = true;
65      this.matrixView.ShowStatisticalInformation = true;
66      this.matrixView.Size = new System.Drawing.Size(294, 174);
67      this.matrixView.TabIndex = 0;
68      //
69      // comboBox
70      //
71      this.comboBox.FormattingEnabled = true;
72      this.comboBox.Location = new System.Drawing.Point(39, 6);
73      this.comboBox.Name = "comboBox";
74      this.comboBox.Size = new System.Drawing.Size(68, 21);
75      this.comboBox.TabIndex = 1;
76      this.comboBox.SelectedValueChanged += new System.EventHandler(this.comboBox_SelectedValueChanged);
77      //
78      // label1
79      //
80      this.foldsLabel.AutoSize = true;
81      this.foldsLabel.Location = new System.Drawing.Point(3, 9);
82      this.foldsLabel.Name = "foldsLabel";
83      this.foldsLabel.Size = new System.Drawing.Size(30, 13);
84      this.foldsLabel.TabIndex = 2;
85      this.foldsLabel.Text = "Fold:";
86      //
87      // variableImpactsGroupBox
88      //
89      this.variableImpactsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90            | System.Windows.Forms.AnchorStyles.Left)
91            | System.Windows.Forms.AnchorStyles.Right)));
92      this.variableImpactsGroupBox.Controls.Add(this.matrixView);
93      this.variableImpactsGroupBox.Location = new System.Drawing.Point(0, 33);
94      this.variableImpactsGroupBox.Name = "variableImpactsGroupBox";
95      this.variableImpactsGroupBox.Size = new System.Drawing.Size(306, 199);
96      this.variableImpactsGroupBox.TabIndex = 3;
97      this.variableImpactsGroupBox.TabStop = false;
98      this.variableImpactsGroupBox.Text = "Variable impacts:";
99      //
100      // RunCollectionVariableImpactView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
104      this.Controls.Add(this.variableImpactsGroupBox);
105      this.Controls.Add(this.foldsLabel);
106      this.Controls.Add(this.comboBox);
107      this.Name = "RunCollectionVariableImpactView";
108      this.Size = new System.Drawing.Size(309, 235);
109      this.variableImpactsGroupBox.ResumeLayout(false);
110      this.ResumeLayout(false);
111      this.PerformLayout();
112
113    }
114
115    #endregion
116
117    private HeuristicLab.Data.Views.StringConvertibleMatrixView matrixView;
118    private System.Windows.Forms.ComboBox comboBox;
119    private System.Windows.Forms.Label foldsLabel;
120    private System.Windows.Forms.GroupBox variableImpactsGroupBox;
121  }
122}
Note: See TracBrowser for help on using the repository browser.