Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolView.Designer.cs @ 6347

Last change on this file since 6347 was 6299, checked in by mkommend, 14 years ago

#1479: Corrected handling of GroupSymbols.

File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Encodings.SymbolicExpressionTreeEncoding.Views {
23  partial class SymbolView {
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.initialFrequencyLabel = new System.Windows.Forms.Label();
48      this.initialFrequencyTextBox = new System.Windows.Forms.TextBox();
49      this.checkBoxEnabled = new System.Windows.Forms.CheckBox();
50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      this.SuspendLayout();
52      //
53      // nameTextBox
54      //
55      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
56      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
57      this.nameTextBox.Location = new System.Drawing.Point(93, 0);
58      this.nameTextBox.Size = new System.Drawing.Size(202, 20);
59      //
60      // infoLabel
61      //
62      this.infoLabel.Location = new System.Drawing.Point(301, 3);
63      //
64      // initialFrequencyLabel
65      //
66      this.initialFrequencyLabel.AutoSize = true;
67      this.initialFrequencyLabel.Location = new System.Drawing.Point(3, 29);
68      this.initialFrequencyLabel.Name = "initialFrequencyLabel";
69      this.initialFrequencyLabel.Size = new System.Drawing.Size(84, 13);
70      this.initialFrequencyLabel.TabIndex = 3;
71      this.initialFrequencyLabel.Text = "Initial frequency:";
72      this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
73      //
74      // initialFrequencyTextBox
75      //
76      this.initialFrequencyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
77            | System.Windows.Forms.AnchorStyles.Right)));
78      this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
79      this.initialFrequencyTextBox.Location = new System.Drawing.Point(93, 26);
80      this.initialFrequencyTextBox.Name = "initialFrequencyTextBox";
81      this.initialFrequencyTextBox.Size = new System.Drawing.Size(227, 20);
82      this.initialFrequencyTextBox.TabIndex = 4;
83      this.initialFrequencyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.initialFrequencyTextBox_KeyDown);
84      this.initialFrequencyTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.initialFrequencyTextBox_Validating);
85      this.initialFrequencyTextBox.Validated += new System.EventHandler(this.initialFrequencyTextBox_Validated);
86      //
87      // checkBoxEnabled
88      //
89      this.checkBoxEnabled.AutoSize = true;
90      this.checkBoxEnabled.Location = new System.Drawing.Point(93, 52);
91      this.checkBoxEnabled.Name = "checkBoxEnabled";
92      this.checkBoxEnabled.Size = new System.Drawing.Size(65, 17);
93      this.checkBoxEnabled.TabIndex = 5;
94      this.checkBoxEnabled.Text = "Enabled";
95      this.checkBoxEnabled.UseVisualStyleBackColor = true;
96      this.checkBoxEnabled.CheckedChanged += new System.EventHandler(this.checkBoxEnabled_CheckedChanged);
97      //
98      // SymbolView
99      //
100      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
101      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
102      this.Controls.Add(this.initialFrequencyTextBox);
103      this.Controls.Add(this.initialFrequencyLabel);
104      this.Controls.Add(this.checkBoxEnabled);
105      this.Name = "SymbolView";
106      this.Size = new System.Drawing.Size(320, 75);
107      this.Controls.SetChildIndex(this.checkBoxEnabled, 0);
108      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
109      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
110      this.Controls.SetChildIndex(this.infoLabel, 0);
111      this.Controls.SetChildIndex(this.nameLabel, 0);
112      this.Controls.SetChildIndex(this.nameTextBox, 0);
113      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
114      this.ResumeLayout(false);
115      this.PerformLayout();
116
117    }
118
119    #endregion
120
121    protected System.Windows.Forms.Label initialFrequencyLabel;
122    protected System.Windows.Forms.TextBox initialFrequencyTextBox;
123    private System.Windows.Forms.CheckBox checkBoxEnabled;
124
125  }
126}
Note: See TracBrowser for help on using the repository browser.