1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 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;
|
---|
23 | using System.Drawing;
|
---|
24 | using System.Windows.Forms;
|
---|
25 | using HeuristicLab.Core.Views;
|
---|
26 | using HeuristicLab.MainForm;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Problems.LawnMower.Views {
|
---|
29 | partial class SolutionLawnView : 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 | }
|
---|