1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 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 | using System.Windows.Forms;
|
---|
23 | using HeuristicLab.Core.Views;
|
---|
24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
|
---|
25 | using HeuristicLab.MainForm;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Problems.LawnMower.Views {
|
---|
28 | partial class SolutionProgramView {
|
---|
29 | private Panel panel;
|
---|
30 | private GraphicalSymbolicExpressionTreeView graphTreeView;
|
---|
31 |
|
---|
32 | private void InitializeComponent() {
|
---|
33 | this.panel = new System.Windows.Forms.Panel();
|
---|
34 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
35 | this.SuspendLayout();
|
---|
36 | //
|
---|
37 | // nameTextBox
|
---|
38 | //
|
---|
39 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
40 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
41 | //
|
---|
42 | // panel
|
---|
43 | //
|
---|
44 | this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
45 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
46 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
47 | this.panel.Location = new System.Drawing.Point(3, 26);
|
---|
48 | this.panel.Name = "panel";
|
---|
49 | this.panel.Size = new System.Drawing.Size(345, 190);
|
---|
50 | this.panel.TabIndex = 3;
|
---|
51 | //
|
---|
52 | // SolutionProgramView
|
---|
53 | //
|
---|
54 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
55 | this.Controls.Add(this.panel);
|
---|
56 | this.Name = "SolutionProgramView";
|
---|
57 | this.Size = new System.Drawing.Size(351, 219);
|
---|
58 | this.Controls.SetChildIndex(this.panel, 0);
|
---|
59 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
60 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
61 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
62 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
63 | this.ResumeLayout(false);
|
---|
64 | this.PerformLayout();
|
---|
65 |
|
---|
66 | }
|
---|
67 | }
|
---|
68 | }
|
---|