Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.GeneticProgramming.Views/3.3/LawnMower/SolutionView.Designer.cs @ 13279

Last change on this file since 13279 was 12911, checked in by gkronber, 9 years ago

#2472: created project structure for HeuristicLab.Problems.GeneticProgramming and added implementations of ArtificialAnt and LawnMower

File size: 4.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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
22using System;
23using System.Drawing;
24using System.Windows.Forms;
25using HeuristicLab.Core.Views;
26using HeuristicLab.MainForm;
27
28namespace HeuristicLab.Problems.GeneticProgramming.Views.LawnMower {
29  partial class SolutionView : NamedItemView {
30    private PictureBox pictureBox;
31    private System.Windows.Forms.GroupBox groupBox;
32
33
34    private void InitializeComponent() {
35      this.groupBox = new System.Windows.Forms.GroupBox();
36      this.pictureBox = new System.Windows.Forms.PictureBox();
37      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
38      this.groupBox.SuspendLayout();
39      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
40      this.SuspendLayout();
41      //
42      // nameTextBox
43      //
44      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
45      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
46      this.nameTextBox.Size = new System.Drawing.Size(270, 20);
47      //
48      // infoLabel
49      //
50      this.infoLabel.Location = new System.Drawing.Point(334, 3);
51      //
52      // groupBox
53      //
54      this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
55            | System.Windows.Forms.AnchorStyles.Left)
56            | System.Windows.Forms.AnchorStyles.Right)));
57      this.groupBox.Controls.Add(this.pictureBox);
58      this.groupBox.Location = new System.Drawing.Point(3, 26);
59      this.groupBox.Name = "groupBox";
60      this.groupBox.Size = new System.Drawing.Size(347, 232);
61      this.groupBox.TabIndex = 3;
62      this.groupBox.TabStop = false;
63      this.groupBox.Text = "Lawn mower solution";
64      //
65      // pictureBox
66      //
67      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
68            | System.Windows.Forms.AnchorStyles.Left)
69            | System.Windows.Forms.AnchorStyles.Right)));
70      this.pictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
71      this.pictureBox.Location = new System.Drawing.Point(6, 19);
72      this.pictureBox.Name = "pictureBox";
73      this.pictureBox.Size = new System.Drawing.Size(335, 207);
74      this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
75      this.pictureBox.TabIndex = 0;
76      this.pictureBox.TabStop = false;
77      //
78      // SolutionView
79      //
80      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
81      this.Controls.Add(this.groupBox);
82      this.Name = "SolutionView";
83      this.Size = new System.Drawing.Size(353, 261);
84      this.Controls.SetChildIndex(this.groupBox, 0);
85      this.Controls.SetChildIndex(this.nameLabel, 0);
86      this.Controls.SetChildIndex(this.nameTextBox, 0);
87      this.Controls.SetChildIndex(this.infoLabel, 0);
88      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
89      this.groupBox.ResumeLayout(false);
90      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
91      this.ResumeLayout(false);
92      this.PerformLayout();
93
94    }
95  }
96}
Note: See TracBrowser for help on using the repository browser.