#region License Information
/* HeuristicLab
* Copyright (C) 2002-2016 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
namespace HeuristicLab.Optimization.Views {
partial class IOptimizerView {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IOptimizerView));
this.startButton = new System.Windows.Forms.Button();
this.executionTimeTextBox = new System.Windows.Forms.TextBox();
this.executionTimeLabel = new System.Windows.Forms.Label();
this.pauseButton = new System.Windows.Forms.Button();
this.stopButton = new System.Windows.Forms.Button();
this.resetButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).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(349, 20);
//
// infoLabel
//
this.infoLabel.Location = new System.Drawing.Point(413, 3);
//
// startButton
//
this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.startButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
this.startButton.Location = new System.Drawing.Point(0, 205);
this.startButton.Name = "startButton";
this.startButton.Size = new System.Drawing.Size(24, 24);
this.startButton.TabIndex = 10;
this.toolTip.SetToolTip(this.startButton, "Start/Resume Optimizer");
this.startButton.UseVisualStyleBackColor = true;
this.startButton.Click += new System.EventHandler(this.startButton_Click);
//
// executionTimeTextBox
//
this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.executionTimeTextBox.Location = new System.Drawing.Point(295, 209);
this.executionTimeTextBox.Name = "executionTimeTextBox";
this.executionTimeTextBox.ReadOnly = true;
this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
this.executionTimeTextBox.TabIndex = 15;
//
// executionTimeLabel
//
this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.executionTimeLabel.AutoSize = true;
this.executionTimeLabel.Location = new System.Drawing.Point(206, 212);
this.executionTimeLabel.Name = "executionTimeLabel";
this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
this.executionTimeLabel.TabIndex = 14;
this.executionTimeLabel.Text = "&Execution Time:";
//
// pauseButton
//
this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.pauseButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pause;
this.pauseButton.Location = new System.Drawing.Point(30, 205);
this.pauseButton.Name = "pauseButton";
this.pauseButton.Size = new System.Drawing.Size(24, 24);
this.pauseButton.TabIndex = 11;
this.toolTip.SetToolTip(this.pauseButton, "Pause Optimizer");
this.pauseButton.UseVisualStyleBackColor = true;
this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
//
// stopButton
//
this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
this.stopButton.Location = new System.Drawing.Point(60, 205);
this.stopButton.Name = "stopButton";
this.stopButton.Size = new System.Drawing.Size(24, 24);
this.stopButton.TabIndex = 12;
this.toolTip.SetToolTip(this.stopButton, "Stop Optimizer");
this.stopButton.UseVisualStyleBackColor = true;
this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
//
// resetButton
//
this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.resetButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Restart;
this.resetButton.Location = new System.Drawing.Point(90, 205);
this.resetButton.Name = "resetButton";
this.resetButton.Size = new System.Drawing.Size(24, 24);
this.resetButton.TabIndex = 13;
this.toolTip.SetToolTip(this.resetButton, "Reset Optimizer");
this.resetButton.UseVisualStyleBackColor = true;
this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
//
// IOptimizerView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.Controls.Add(this.startButton);
this.Controls.Add(this.executionTimeTextBox);
this.Controls.Add(this.executionTimeLabel);
this.Controls.Add(this.pauseButton);
this.Controls.Add(this.stopButton);
this.Controls.Add(this.resetButton);
this.Name = "IOptimizerView";
this.Size = new System.Drawing.Size(432, 229);
this.Controls.SetChildIndex(this.nameLabel, 0);
this.Controls.SetChildIndex(this.nameTextBox, 0);
this.Controls.SetChildIndex(this.infoLabel, 0);
this.Controls.SetChildIndex(this.resetButton, 0);
this.Controls.SetChildIndex(this.stopButton, 0);
this.Controls.SetChildIndex(this.pauseButton, 0);
this.Controls.SetChildIndex(this.executionTimeLabel, 0);
this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
this.Controls.SetChildIndex(this.startButton, 0);
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
protected System.Windows.Forms.Button startButton;
protected System.Windows.Forms.TextBox executionTimeTextBox;
protected System.Windows.Forms.Label executionTimeLabel;
protected System.Windows.Forms.Button pauseButton;
protected System.Windows.Forms.Button stopButton;
protected System.Windows.Forms.Button resetButton;
}
}