1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | namespace HeuristicLab.GP {
|
---|
23 | partial class FunctionLibraryEditor {
|
---|
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.tabControl = new System.Windows.Forms.TabControl();
|
---|
48 | this.functionsTabPage = new System.Windows.Forms.TabPage();
|
---|
49 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
50 | this.availableFunctionsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
51 | this.functionsListView = new System.Windows.Forms.ListView();
|
---|
52 | this.removeButton = new System.Windows.Forms.Button();
|
---|
53 | this.addButton = new System.Windows.Forms.Button();
|
---|
54 | this.functionDetailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
55 | this.functionDetailsPanel = new System.Windows.Forms.Panel();
|
---|
56 | this.initializationTabPage = new System.Windows.Forms.TabPage();
|
---|
57 | this.initSplitContainer = new System.Windows.Forms.SplitContainer();
|
---|
58 | this.initListView = new System.Windows.Forms.ListView();
|
---|
59 | this.initVariableView = new HeuristicLab.Core.VariableView();
|
---|
60 | this.mutationTabPage = new System.Windows.Forms.TabPage();
|
---|
61 | this.mutationSplitContainer = new System.Windows.Forms.SplitContainer();
|
---|
62 | this.mutationListView = new System.Windows.Forms.ListView();
|
---|
63 | this.mutationVariableView = new HeuristicLab.Core.VariableView();
|
---|
64 | this.testTabPage = new System.Windows.Forms.TabPage();
|
---|
65 | this.testButton = new System.Windows.Forms.Button();
|
---|
66 | this.outputTextBox = new System.Windows.Forms.TextBox();
|
---|
67 | this.tabControl.SuspendLayout();
|
---|
68 | this.functionsTabPage.SuspendLayout();
|
---|
69 | this.splitContainer.Panel1.SuspendLayout();
|
---|
70 | this.splitContainer.Panel2.SuspendLayout();
|
---|
71 | this.splitContainer.SuspendLayout();
|
---|
72 | this.availableFunctionsGroupBox.SuspendLayout();
|
---|
73 | this.functionDetailsGroupBox.SuspendLayout();
|
---|
74 | this.initializationTabPage.SuspendLayout();
|
---|
75 | this.initSplitContainer.Panel1.SuspendLayout();
|
---|
76 | this.initSplitContainer.Panel2.SuspendLayout();
|
---|
77 | this.initSplitContainer.SuspendLayout();
|
---|
78 | this.mutationTabPage.SuspendLayout();
|
---|
79 | this.mutationSplitContainer.Panel1.SuspendLayout();
|
---|
80 | this.mutationSplitContainer.Panel2.SuspendLayout();
|
---|
81 | this.mutationSplitContainer.SuspendLayout();
|
---|
82 | this.testTabPage.SuspendLayout();
|
---|
83 | this.SuspendLayout();
|
---|
84 | //
|
---|
85 | // tabControl
|
---|
86 | //
|
---|
87 | this.tabControl.Controls.Add(this.functionsTabPage);
|
---|
88 | this.tabControl.Controls.Add(this.initializationTabPage);
|
---|
89 | this.tabControl.Controls.Add(this.mutationTabPage);
|
---|
90 | this.tabControl.Controls.Add(this.testTabPage);
|
---|
91 | this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
92 | this.tabControl.Location = new System.Drawing.Point(0, 0);
|
---|
93 | this.tabControl.Name = "tabControl";
|
---|
94 | this.tabControl.SelectedIndex = 0;
|
---|
95 | this.tabControl.Size = new System.Drawing.Size(677, 561);
|
---|
96 | this.tabControl.TabIndex = 1;
|
---|
97 | //
|
---|
98 | // functionsTabPage
|
---|
99 | //
|
---|
100 | this.functionsTabPage.Controls.Add(this.splitContainer);
|
---|
101 | this.functionsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
102 | this.functionsTabPage.Name = "functionsTabPage";
|
---|
103 | this.functionsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
104 | this.functionsTabPage.Size = new System.Drawing.Size(669, 535);
|
---|
105 | this.functionsTabPage.TabIndex = 0;
|
---|
106 | this.functionsTabPage.Text = "Functions";
|
---|
107 | this.functionsTabPage.UseVisualStyleBackColor = true;
|
---|
108 | //
|
---|
109 | // splitContainer
|
---|
110 | //
|
---|
111 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
112 | this.splitContainer.Location = new System.Drawing.Point(3, 3);
|
---|
113 | this.splitContainer.Name = "splitContainer";
|
---|
114 | //
|
---|
115 | // splitContainer.Panel1
|
---|
116 | //
|
---|
117 | this.splitContainer.Panel1.Controls.Add(this.availableFunctionsGroupBox);
|
---|
118 | //
|
---|
119 | // splitContainer.Panel2
|
---|
120 | //
|
---|
121 | this.splitContainer.Panel2.Controls.Add(this.functionDetailsGroupBox);
|
---|
122 | this.splitContainer.Size = new System.Drawing.Size(663, 529);
|
---|
123 | this.splitContainer.SplitterDistance = 230;
|
---|
124 | this.splitContainer.TabIndex = 4;
|
---|
125 | //
|
---|
126 | // availableFunctionsGroupBox
|
---|
127 | //
|
---|
128 | this.availableFunctionsGroupBox.Controls.Add(this.functionsListView);
|
---|
129 | this.availableFunctionsGroupBox.Controls.Add(this.removeButton);
|
---|
130 | this.availableFunctionsGroupBox.Controls.Add(this.addButton);
|
---|
131 | this.availableFunctionsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
132 | this.availableFunctionsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
133 | this.availableFunctionsGroupBox.Name = "availableFunctionsGroupBox";
|
---|
134 | this.availableFunctionsGroupBox.Size = new System.Drawing.Size(230, 529);
|
---|
135 | this.availableFunctionsGroupBox.TabIndex = 5;
|
---|
136 | this.availableFunctionsGroupBox.TabStop = false;
|
---|
137 | this.availableFunctionsGroupBox.Text = "Available functions:";
|
---|
138 | //
|
---|
139 | // functionsListView
|
---|
140 | //
|
---|
141 | this.functionsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
142 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
143 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
144 | this.functionsListView.Location = new System.Drawing.Point(6, 19);
|
---|
145 | this.functionsListView.MultiSelect = false;
|
---|
146 | this.functionsListView.Name = "functionsListView";
|
---|
147 | this.functionsListView.Size = new System.Drawing.Size(218, 475);
|
---|
148 | this.functionsListView.TabIndex = 3;
|
---|
149 | this.functionsListView.UseCompatibleStateImageBehavior = false;
|
---|
150 | this.functionsListView.View = System.Windows.Forms.View.List;
|
---|
151 | this.functionsListView.SelectedIndexChanged += new System.EventHandler(this.functionsListView_SelectedIndexChanged);
|
---|
152 | this.functionsListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.functionsListView_MouseUp);
|
---|
153 | this.functionsListView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.functionsListView_KeyUp);
|
---|
154 | this.functionsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.functionsListView_ItemDrag);
|
---|
155 | //
|
---|
156 | // removeButton
|
---|
157 | //
|
---|
158 | this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
159 | this.removeButton.Location = new System.Drawing.Point(87, 500);
|
---|
160 | this.removeButton.Name = "removeButton";
|
---|
161 | this.removeButton.Size = new System.Drawing.Size(75, 23);
|
---|
162 | this.removeButton.TabIndex = 2;
|
---|
163 | this.removeButton.Text = "Remove";
|
---|
164 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
165 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
166 | //
|
---|
167 | // addButton
|
---|
168 | //
|
---|
169 | this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
170 | this.addButton.Location = new System.Drawing.Point(6, 500);
|
---|
171 | this.addButton.Name = "addButton";
|
---|
172 | this.addButton.Size = new System.Drawing.Size(75, 23);
|
---|
173 | this.addButton.TabIndex = 1;
|
---|
174 | this.addButton.Text = "Add...";
|
---|
175 | this.addButton.UseVisualStyleBackColor = true;
|
---|
176 | this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
---|
177 | //
|
---|
178 | // functionDetailsGroupBox
|
---|
179 | //
|
---|
180 | this.functionDetailsGroupBox.Controls.Add(this.functionDetailsPanel);
|
---|
181 | this.functionDetailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
182 | this.functionDetailsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
183 | this.functionDetailsGroupBox.Name = "functionDetailsGroupBox";
|
---|
184 | this.functionDetailsGroupBox.Size = new System.Drawing.Size(429, 529);
|
---|
185 | this.functionDetailsGroupBox.TabIndex = 8;
|
---|
186 | this.functionDetailsGroupBox.TabStop = false;
|
---|
187 | this.functionDetailsGroupBox.Text = "Function details:";
|
---|
188 | //
|
---|
189 | // functionDetailsPanel
|
---|
190 | //
|
---|
191 | this.functionDetailsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
192 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
193 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
194 | this.functionDetailsPanel.Location = new System.Drawing.Point(6, 19);
|
---|
195 | this.functionDetailsPanel.Name = "functionDetailsPanel";
|
---|
196 | this.functionDetailsPanel.Size = new System.Drawing.Size(417, 504);
|
---|
197 | this.functionDetailsPanel.TabIndex = 7;
|
---|
198 | //
|
---|
199 | // initializationTabPage
|
---|
200 | //
|
---|
201 | this.initializationTabPage.Controls.Add(this.initSplitContainer);
|
---|
202 | this.initializationTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
203 | this.initializationTabPage.Name = "initializationTabPage";
|
---|
204 | this.initializationTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
205 | this.initializationTabPage.Size = new System.Drawing.Size(669, 535);
|
---|
206 | this.initializationTabPage.TabIndex = 1;
|
---|
207 | this.initializationTabPage.Text = "Initialization";
|
---|
208 | this.initializationTabPage.UseVisualStyleBackColor = true;
|
---|
209 | //
|
---|
210 | // initSplitContainer
|
---|
211 | //
|
---|
212 | this.initSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
213 | this.initSplitContainer.Location = new System.Drawing.Point(3, 3);
|
---|
214 | this.initSplitContainer.Name = "initSplitContainer";
|
---|
215 | //
|
---|
216 | // initSplitContainer.Panel1
|
---|
217 | //
|
---|
218 | this.initSplitContainer.Panel1.Controls.Add(this.initListView);
|
---|
219 | //
|
---|
220 | // initSplitContainer.Panel2
|
---|
221 | //
|
---|
222 | this.initSplitContainer.Panel2.Controls.Add(this.initVariableView);
|
---|
223 | this.initSplitContainer.Size = new System.Drawing.Size(663, 529);
|
---|
224 | this.initSplitContainer.SplitterDistance = 221;
|
---|
225 | this.initSplitContainer.TabIndex = 0;
|
---|
226 | //
|
---|
227 | // initListView
|
---|
228 | //
|
---|
229 | this.initListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
230 | this.initListView.Location = new System.Drawing.Point(0, 0);
|
---|
231 | this.initListView.Name = "initListView";
|
---|
232 | this.initListView.Size = new System.Drawing.Size(221, 529);
|
---|
233 | this.initListView.TabIndex = 0;
|
---|
234 | this.initListView.UseCompatibleStateImageBehavior = false;
|
---|
235 | this.initListView.View = System.Windows.Forms.View.List;
|
---|
236 | this.initListView.SelectedIndexChanged += new System.EventHandler(this.initListView_SelectedIndexChanged);
|
---|
237 | //
|
---|
238 | // initVariableView
|
---|
239 | //
|
---|
240 | this.initVariableView.Caption = "Variable";
|
---|
241 | this.initVariableView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
242 | this.initVariableView.Location = new System.Drawing.Point(0, 0);
|
---|
243 | this.initVariableView.Name = "initVariableView";
|
---|
244 | this.initVariableView.Size = new System.Drawing.Size(438, 529);
|
---|
245 | this.initVariableView.TabIndex = 0;
|
---|
246 | this.initVariableView.Variable = null;
|
---|
247 | //
|
---|
248 | // mutationTabPage
|
---|
249 | //
|
---|
250 | this.mutationTabPage.Controls.Add(this.mutationSplitContainer);
|
---|
251 | this.mutationTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
252 | this.mutationTabPage.Name = "mutationTabPage";
|
---|
253 | this.mutationTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
254 | this.mutationTabPage.Size = new System.Drawing.Size(669, 535);
|
---|
255 | this.mutationTabPage.TabIndex = 2;
|
---|
256 | this.mutationTabPage.Text = "Mutation";
|
---|
257 | this.mutationTabPage.UseVisualStyleBackColor = true;
|
---|
258 | //
|
---|
259 | // mutationSplitContainer
|
---|
260 | //
|
---|
261 | this.mutationSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
262 | this.mutationSplitContainer.Location = new System.Drawing.Point(3, 3);
|
---|
263 | this.mutationSplitContainer.Name = "mutationSplitContainer";
|
---|
264 | //
|
---|
265 | // mutationSplitContainer.Panel1
|
---|
266 | //
|
---|
267 | this.mutationSplitContainer.Panel1.Controls.Add(this.mutationListView);
|
---|
268 | //
|
---|
269 | // mutationSplitContainer.Panel2
|
---|
270 | //
|
---|
271 | this.mutationSplitContainer.Panel2.Controls.Add(this.mutationVariableView);
|
---|
272 | this.mutationSplitContainer.Size = new System.Drawing.Size(663, 529);
|
---|
273 | this.mutationSplitContainer.SplitterDistance = 221;
|
---|
274 | this.mutationSplitContainer.TabIndex = 0;
|
---|
275 | //
|
---|
276 | // mutationListView
|
---|
277 | //
|
---|
278 | this.mutationListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
279 | this.mutationListView.Location = new System.Drawing.Point(0, 0);
|
---|
280 | this.mutationListView.MultiSelect = false;
|
---|
281 | this.mutationListView.Name = "mutationListView";
|
---|
282 | this.mutationListView.Size = new System.Drawing.Size(221, 529);
|
---|
283 | this.mutationListView.TabIndex = 0;
|
---|
284 | this.mutationListView.UseCompatibleStateImageBehavior = false;
|
---|
285 | this.mutationListView.View = System.Windows.Forms.View.List;
|
---|
286 | this.mutationListView.SelectedIndexChanged += new System.EventHandler(this.mutationListView_SelectedIndexChanged);
|
---|
287 | //
|
---|
288 | // mutationVariableView
|
---|
289 | //
|
---|
290 | this.mutationVariableView.Caption = "Variable";
|
---|
291 | this.mutationVariableView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
292 | this.mutationVariableView.Location = new System.Drawing.Point(0, 0);
|
---|
293 | this.mutationVariableView.Name = "mutationVariableView";
|
---|
294 | this.mutationVariableView.Size = new System.Drawing.Size(438, 529);
|
---|
295 | this.mutationVariableView.TabIndex = 0;
|
---|
296 | this.mutationVariableView.Variable = null;
|
---|
297 | //
|
---|
298 | // testTabPage
|
---|
299 | //
|
---|
300 | this.testTabPage.Controls.Add(this.testButton);
|
---|
301 | this.testTabPage.Controls.Add(this.outputTextBox);
|
---|
302 | this.testTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
303 | this.testTabPage.Name = "testTabPage";
|
---|
304 | this.testTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
305 | this.testTabPage.Size = new System.Drawing.Size(669, 535);
|
---|
306 | this.testTabPage.TabIndex = 3;
|
---|
307 | this.testTabPage.Text = "Test function library";
|
---|
308 | this.testTabPage.UseVisualStyleBackColor = true;
|
---|
309 | //
|
---|
310 | // testButton
|
---|
311 | //
|
---|
312 | this.testButton.Location = new System.Drawing.Point(6, 6);
|
---|
313 | this.testButton.Name = "testButton";
|
---|
314 | this.testButton.Size = new System.Drawing.Size(75, 23);
|
---|
315 | this.testButton.TabIndex = 1;
|
---|
316 | this.testButton.Text = "Run test";
|
---|
317 | this.testButton.UseVisualStyleBackColor = true;
|
---|
318 | this.testButton.Click += new System.EventHandler(this.testButton_Click);
|
---|
319 | //
|
---|
320 | // outputTextBox
|
---|
321 | //
|
---|
322 | this.outputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
323 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
324 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
325 | this.outputTextBox.Location = new System.Drawing.Point(3, 35);
|
---|
326 | this.outputTextBox.Multiline = true;
|
---|
327 | this.outputTextBox.Name = "outputTextBox";
|
---|
328 | this.outputTextBox.ReadOnly = true;
|
---|
329 | this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
330 | this.outputTextBox.Size = new System.Drawing.Size(663, 497);
|
---|
331 | this.outputTextBox.TabIndex = 0;
|
---|
332 | //
|
---|
333 | // FunctionLibraryEditor
|
---|
334 | //
|
---|
335 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
336 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
337 | this.Controls.Add(this.tabControl);
|
---|
338 | this.Name = "FunctionLibraryEditor";
|
---|
339 | this.Size = new System.Drawing.Size(677, 561);
|
---|
340 | this.tabControl.ResumeLayout(false);
|
---|
341 | this.functionsTabPage.ResumeLayout(false);
|
---|
342 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
343 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
344 | this.splitContainer.ResumeLayout(false);
|
---|
345 | this.availableFunctionsGroupBox.ResumeLayout(false);
|
---|
346 | this.functionDetailsGroupBox.ResumeLayout(false);
|
---|
347 | this.initializationTabPage.ResumeLayout(false);
|
---|
348 | this.initSplitContainer.Panel1.ResumeLayout(false);
|
---|
349 | this.initSplitContainer.Panel2.ResumeLayout(false);
|
---|
350 | this.initSplitContainer.ResumeLayout(false);
|
---|
351 | this.mutationTabPage.ResumeLayout(false);
|
---|
352 | this.mutationSplitContainer.Panel1.ResumeLayout(false);
|
---|
353 | this.mutationSplitContainer.Panel2.ResumeLayout(false);
|
---|
354 | this.mutationSplitContainer.ResumeLayout(false);
|
---|
355 | this.testTabPage.ResumeLayout(false);
|
---|
356 | this.testTabPage.PerformLayout();
|
---|
357 | this.ResumeLayout(false);
|
---|
358 |
|
---|
359 | }
|
---|
360 |
|
---|
361 | #endregion
|
---|
362 |
|
---|
363 | private System.Windows.Forms.TabControl tabControl;
|
---|
364 | private System.Windows.Forms.TabPage functionsTabPage;
|
---|
365 | private System.Windows.Forms.TabPage initializationTabPage;
|
---|
366 | private System.Windows.Forms.TabPage mutationTabPage;
|
---|
367 | private System.Windows.Forms.SplitContainer initSplitContainer;
|
---|
368 | private System.Windows.Forms.SplitContainer mutationSplitContainer;
|
---|
369 | private HeuristicLab.Core.VariableView initVariableView;
|
---|
370 | private HeuristicLab.Core.VariableView mutationVariableView;
|
---|
371 | private System.Windows.Forms.ListView initListView;
|
---|
372 | private System.Windows.Forms.ListView mutationListView;
|
---|
373 | private System.Windows.Forms.Button removeButton;
|
---|
374 | private System.Windows.Forms.Button addButton;
|
---|
375 | private System.Windows.Forms.ListView functionsListView;
|
---|
376 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
377 | private System.Windows.Forms.Panel functionDetailsPanel;
|
---|
378 | private System.Windows.Forms.GroupBox availableFunctionsGroupBox;
|
---|
379 | private System.Windows.Forms.GroupBox functionDetailsGroupBox;
|
---|
380 | private System.Windows.Forms.TabPage testTabPage;
|
---|
381 | private System.Windows.Forms.TextBox outputTextBox;
|
---|
382 | private System.Windows.Forms.Button testButton;
|
---|
383 | }
|
---|
384 | }
|
---|