Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/ConstantView.Designer.cs @ 18146

Last change on this file since 18146 was 18146, checked in by mkommend, 2 years ago

#3136: Merged trunk changes into branch.

File size: 5.9 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 ConstantView {
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.valueLabel = new System.Windows.Forms.Label();
48      this.valueTextBox = new System.Windows.Forms.TextBox();
49      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
50      this.SuspendLayout();
51      //
52      // initialFrequencyLabel
53      //
54      this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
55      //
56      // initialFrequencyTextBox
57      //
58      this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
59      this.initialFrequencyTextBox.Size = new System.Drawing.Size(280, 20);
60      //
61      // minimumArityLabel
62      //
63      this.toolTip.SetToolTip(this.minimumArityLabel, "The minimum arity of the symbol");
64      //
65      // maximumArityLabel
66      //
67      this.toolTip.SetToolTip(this.maximumArityLabel, "The maximum arity of the symbol");
68      //
69      // minimumArityTextBox
70      //
71      this.errorProvider.SetIconAlignment(this.minimumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
72      this.minimumArityTextBox.Size = new System.Drawing.Size(280, 20);
73      //
74      // maximumArityTextBox
75      //
76      this.errorProvider.SetIconAlignment(this.maximumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
77      this.maximumArityTextBox.Size = new System.Drawing.Size(280, 20);
78      //
79      // nameTextBox
80      //
81      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
82      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
83      this.nameTextBox.Size = new System.Drawing.Size(280, 20);
84      //
85      // infoLabel
86      //
87      this.infoLabel.Location = new System.Drawing.Point(379, 3);
88      //
89      // valueLabel
90      //
91      this.valueLabel.AutoSize = true;
92      this.valueLabel.Location = new System.Drawing.Point(3, 130);
93      this.valueLabel.Name = "valueLabel";
94      this.valueLabel.Size = new System.Drawing.Size(37, 13);
95      this.valueLabel.TabIndex = 0;
96      this.valueLabel.Text = "Value:";
97      this.toolTip.SetToolTip(this.valueLabel, "The value of the constant.");
98      //
99      // valueTextBox
100      //
101      this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
102            | System.Windows.Forms.AnchorStyles.Right)));
103      this.errorProvider.SetIconAlignment(this.valueTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
104      this.valueTextBox.Location = new System.Drawing.Point(93, 127);
105      this.valueTextBox.Name = "valueTextBox";
106      this.valueTextBox.Size = new System.Drawing.Size(280, 20);
107      this.valueTextBox.TabIndex = 1;
108      this.toolTip.SetToolTip(this.valueTextBox, "The value of the constant.");
109      this.valueTextBox.TextChanged += new System.EventHandler(this.valueTextBox_TextChanged);
110      //
111      // ConstantView
112      //
113      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
114      this.Controls.Add(this.valueLabel);
115      this.Controls.Add(this.valueTextBox);
116      this.Name = "ConstantView";
117      this.Size = new System.Drawing.Size(398, 168);
118      this.Controls.SetChildIndex(this.valueTextBox, 0);
119      this.Controls.SetChildIndex(this.valueLabel, 0);
120      this.Controls.SetChildIndex(this.enabledCheckBox, 0);
121      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
122      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
123      this.Controls.SetChildIndex(this.maximumArityLabel, 0);
124      this.Controls.SetChildIndex(this.maximumArityTextBox, 0);
125      this.Controls.SetChildIndex(this.minimumArityLabel, 0);
126      this.Controls.SetChildIndex(this.minimumArityTextBox, 0);
127      this.Controls.SetChildIndex(this.infoLabel, 0);
128      this.Controls.SetChildIndex(this.nameLabel, 0);
129      this.Controls.SetChildIndex(this.nameTextBox, 0);
130      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
131      this.ResumeLayout(false);
132      this.PerformLayout();
133
134    }
135
136    #endregion
137
138    private System.Windows.Forms.Label valueLabel;
139    private System.Windows.Forms.TextBox valueTextBox;
140  }
141}
Note: See TracBrowser for help on using the repository browser.