#region License Information /* HeuristicLab * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Drawing; using System.Windows.Forms; using HeuristicLab.Core.Views; using HeuristicLab.MainForm; namespace HeuristicLab.Problems.LawnMower.Views { partial class SolutionLawnView : NamedItemView { private PictureBox pictureBox; private System.Windows.Forms.GroupBox groupBox; private void InitializeComponent() { this.groupBox = new System.Windows.Forms.GroupBox(); this.pictureBox = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); this.groupBox.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); this.SuspendLayout(); // // nameTextBox // this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); this.errorProvider.SetIconPadding(this.nameTextBox, 2); this.nameTextBox.Size = new System.Drawing.Size(270, 20); // // infoLabel // this.infoLabel.Location = new System.Drawing.Point(334, 3); // // groupBox // this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBox.Controls.Add(this.pictureBox); this.groupBox.Location = new System.Drawing.Point(3, 26); this.groupBox.Name = "groupBox"; this.groupBox.Size = new System.Drawing.Size(347, 232); this.groupBox.TabIndex = 3; this.groupBox.TabStop = false; this.groupBox.Text = "Lawn mower solution"; // // pictureBox // this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.pictureBox.Location = new System.Drawing.Point(6, 19); this.pictureBox.Name = "pictureBox"; this.pictureBox.Size = new System.Drawing.Size(335, 207); this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBox.TabIndex = 0; this.pictureBox.TabStop = false; // // SolutionView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.Controls.Add(this.groupBox); this.Name = "SolutionView"; this.Size = new System.Drawing.Size(353, 261); this.Controls.SetChildIndex(this.groupBox, 0); this.Controls.SetChildIndex(this.nameLabel, 0); this.Controls.SetChildIndex(this.nameTextBox, 0); this.Controls.SetChildIndex(this.infoLabel, 0); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.groupBox.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } } }