1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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 | namespace HeuristicLab.Problems.GeneticProgramming.Views.Robocode {
|
---|
22 | partial class CodeNodeView {
|
---|
23 | /// <summary>
|
---|
24 | /// Required designer variable.
|
---|
25 | /// </summary>
|
---|
26 | private System.ComponentModel.IContainer components = null;
|
---|
27 |
|
---|
28 | /// <summary>
|
---|
29 | /// Clean up any resources being used.
|
---|
30 | /// </summary>
|
---|
31 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
32 | protected override void Dispose(bool disposing) {
|
---|
33 | if (disposing && (components != null)) {
|
---|
34 | components.Dispose();
|
---|
35 | }
|
---|
36 | base.Dispose(disposing);
|
---|
37 | }
|
---|
38 |
|
---|
39 | #region Component Designer generated code
|
---|
40 |
|
---|
41 | /// <summary>
|
---|
42 | /// Required method for Designer support - do not modify
|
---|
43 | /// the contents of this method with the code editor.
|
---|
44 | /// </summary>
|
---|
45 | private void InitializeComponent() {
|
---|
46 | this.prefixCode = new System.Windows.Forms.TextBox();
|
---|
47 | this.prefixLabel = new System.Windows.Forms.Label();
|
---|
48 | this.suffixLabel = new System.Windows.Forms.Label();
|
---|
49 | this.suffixCode = new System.Windows.Forms.TextBox();
|
---|
50 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
51 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
52 | this.splitContainer.Panel1.SuspendLayout();
|
---|
53 | this.splitContainer.Panel2.SuspendLayout();
|
---|
54 | this.splitContainer.SuspendLayout();
|
---|
55 | this.SuspendLayout();
|
---|
56 | //
|
---|
57 | // prefixCode
|
---|
58 | //
|
---|
59 | this.prefixCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
60 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
61 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
62 | this.prefixCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
63 | this.prefixCode.Location = new System.Drawing.Point(6, 16);
|
---|
64 | this.prefixCode.Multiline = true;
|
---|
65 | this.prefixCode.Name = "prefixCode";
|
---|
66 | this.prefixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
---|
67 | this.prefixCode.Size = new System.Drawing.Size(573, 111);
|
---|
68 | this.prefixCode.TabIndex = 3;
|
---|
69 | this.prefixCode.Validated += new System.EventHandler(this.prefixCode_Validated);
|
---|
70 | //
|
---|
71 | // prefixLabel
|
---|
72 | //
|
---|
73 | this.prefixLabel.AutoSize = true;
|
---|
74 | this.prefixLabel.Location = new System.Drawing.Point(3, 0);
|
---|
75 | this.prefixLabel.Name = "prefixLabel";
|
---|
76 | this.prefixLabel.Size = new System.Drawing.Size(33, 13);
|
---|
77 | this.prefixLabel.TabIndex = 4;
|
---|
78 | this.prefixLabel.Text = "Prefix";
|
---|
79 | //
|
---|
80 | // suffixLabel
|
---|
81 | //
|
---|
82 | this.suffixLabel.AutoSize = true;
|
---|
83 | this.suffixLabel.Location = new System.Drawing.Point(3, 0);
|
---|
84 | this.suffixLabel.Name = "suffixLabel";
|
---|
85 | this.suffixLabel.Size = new System.Drawing.Size(33, 13);
|
---|
86 | this.suffixLabel.TabIndex = 5;
|
---|
87 | this.suffixLabel.Text = "Suffix";
|
---|
88 | //
|
---|
89 | // suffixCode
|
---|
90 | //
|
---|
91 | this.suffixCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
92 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
93 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
94 | this.suffixCode.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
95 | this.suffixCode.Location = new System.Drawing.Point(6, 16);
|
---|
96 | this.suffixCode.Multiline = true;
|
---|
97 | this.suffixCode.Name = "suffixCode";
|
---|
98 | this.suffixCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
---|
99 | this.suffixCode.Size = new System.Drawing.Size(573, 108);
|
---|
100 | this.suffixCode.TabIndex = 6;
|
---|
101 | this.suffixCode.Validated += new System.EventHandler(this.suffixCode_Validated);
|
---|
102 | //
|
---|
103 | // splitContainer
|
---|
104 | //
|
---|
105 | this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
106 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
107 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
108 | this.splitContainer.Location = new System.Drawing.Point(6, 3);
|
---|
109 | this.splitContainer.Name = "splitContainer";
|
---|
110 | this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
111 | //
|
---|
112 | // splitContainer.Panel1
|
---|
113 | //
|
---|
114 | this.splitContainer.Panel1.Controls.Add(this.prefixCode);
|
---|
115 | this.splitContainer.Panel1.Controls.Add(this.prefixLabel);
|
---|
116 | //
|
---|
117 | // splitContainer.Panel2
|
---|
118 | //
|
---|
119 | this.splitContainer.Panel2.Controls.Add(this.suffixCode);
|
---|
120 | this.splitContainer.Panel2.Controls.Add(this.suffixLabel);
|
---|
121 | this.splitContainer.Size = new System.Drawing.Size(582, 261);
|
---|
122 | this.splitContainer.SplitterDistance = 130;
|
---|
123 | this.splitContainer.TabIndex = 7;
|
---|
124 | //
|
---|
125 | // CodeNodeView
|
---|
126 | //
|
---|
127 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
128 | this.Controls.Add(this.splitContainer);
|
---|
129 | this.Name = "CodeNodeView";
|
---|
130 | this.Size = new System.Drawing.Size(591, 267);
|
---|
131 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
132 | this.splitContainer.Panel1.PerformLayout();
|
---|
133 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
134 | this.splitContainer.Panel2.PerformLayout();
|
---|
135 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
136 | this.splitContainer.ResumeLayout(false);
|
---|
137 | this.ResumeLayout(false);
|
---|
138 |
|
---|
139 | }
|
---|
140 |
|
---|
141 | #endregion
|
---|
142 |
|
---|
143 | private System.Windows.Forms.TextBox prefixCode;
|
---|
144 | private System.Windows.Forms.Label prefixLabel;
|
---|
145 | private System.Windows.Forms.Label suffixLabel;
|
---|
146 | private System.Windows.Forms.TextBox suffixCode;
|
---|
147 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
148 | }
|
---|
149 | }
|
---|