#region License Information
/* HeuristicLab
* Copyright (C) 2002-2010 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.Clients.OKB {
partial class RunView {
///
/// 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) {
if (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() {
this.components = new System.ComponentModel.Container();
this.randomSeedLabel = new System.Windows.Forms.Label();
this.randomSeedTextBox = new System.Windows.Forms.TextBox();
this.createdDateLabel = new System.Windows.Forms.Label();
this.createdDateTextBox = new System.Windows.Forms.TextBox();
this.resultsListView = new System.Windows.Forms.ListView();
this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.valueColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList = new System.Windows.Forms.ImageList(this.components);
this.resultsGroupBox = new System.Windows.Forms.GroupBox();
this.userLabel = new System.Windows.Forms.Label();
this.clientLabel = new System.Windows.Forms.Label();
this.userTextBox = new System.Windows.Forms.TextBox();
this.clientTextBox = new System.Windows.Forms.TextBox();
this.resultsGroupBox.SuspendLayout();
this.SuspendLayout();
//
// randomSeedLabel
//
this.randomSeedLabel.AutoSize = true;
this.randomSeedLabel.Location = new System.Drawing.Point(3, 3);
this.randomSeedLabel.Name = "randomSeedLabel";
this.randomSeedLabel.Size = new System.Drawing.Size(78, 13);
this.randomSeedLabel.TabIndex = 0;
this.randomSeedLabel.Text = "Random Seed:";
//
// randomSeedTextBox
//
this.randomSeedTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.randomSeedTextBox.Location = new System.Drawing.Point(87, 0);
this.randomSeedTextBox.Name = "randomSeedTextBox";
this.randomSeedTextBox.ReadOnly = true;
this.randomSeedTextBox.Size = new System.Drawing.Size(426, 20);
this.randomSeedTextBox.TabIndex = 1;
//
// createdDateLabel
//
this.createdDateLabel.AutoSize = true;
this.createdDateLabel.Location = new System.Drawing.Point(3, 29);
this.createdDateLabel.Name = "createdDateLabel";
this.createdDateLabel.Size = new System.Drawing.Size(75, 13);
this.createdDateLabel.TabIndex = 2;
this.createdDateLabel.Text = "Created Date:";
//
// createdDateTextBox
//
this.createdDateTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.createdDateTextBox.Location = new System.Drawing.Point(87, 26);
this.createdDateTextBox.Name = "createdDateTextBox";
this.createdDateTextBox.ReadOnly = true;
this.createdDateTextBox.Size = new System.Drawing.Size(426, 20);
this.createdDateTextBox.TabIndex = 3;
//
// resultsListView
//
this.resultsListView.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.resultsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.nameColumnHeader,
this.valueColumnHeader});
this.resultsListView.FullRowSelect = true;
this.resultsListView.HideSelection = false;
this.resultsListView.Location = new System.Drawing.Point(6, 19);
this.resultsListView.MultiSelect = false;
this.resultsListView.Name = "resultsListView";
this.resultsListView.ShowGroups = false;
this.resultsListView.ShowItemToolTips = true;
this.resultsListView.Size = new System.Drawing.Size(501, 225);
this.resultsListView.SmallImageList = this.imageList;
this.resultsListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.resultsListView.TabIndex = 0;
this.resultsListView.UseCompatibleStateImageBehavior = false;
this.resultsListView.View = System.Windows.Forms.View.Details;
this.resultsListView.DoubleClick += new System.EventHandler(this.resultsListView_DoubleClick);
//
// nameColumnHeader
//
this.nameColumnHeader.Text = "Name";
//
// valueColumnHeader
//
this.valueColumnHeader.Text = "Value";
//
// imageList
//
this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.imageList.ImageSize = new System.Drawing.Size(16, 16);
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
//
// resultsGroupBox
//
this.resultsGroupBox.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.resultsGroupBox.Controls.Add(this.resultsListView);
this.resultsGroupBox.Location = new System.Drawing.Point(0, 104);
this.resultsGroupBox.Name = "resultsGroupBox";
this.resultsGroupBox.Size = new System.Drawing.Size(513, 250);
this.resultsGroupBox.TabIndex = 8;
this.resultsGroupBox.TabStop = false;
this.resultsGroupBox.Text = "Results";
//
// userLabel
//
this.userLabel.AutoSize = true;
this.userLabel.Location = new System.Drawing.Point(3, 55);
this.userLabel.Name = "userLabel";
this.userLabel.Size = new System.Drawing.Size(32, 13);
this.userLabel.TabIndex = 4;
this.userLabel.Text = "User:";
//
// clientLabel
//
this.clientLabel.AutoSize = true;
this.clientLabel.Location = new System.Drawing.Point(3, 81);
this.clientLabel.Name = "clientLabel";
this.clientLabel.Size = new System.Drawing.Size(36, 13);
this.clientLabel.TabIndex = 6;
this.clientLabel.Text = "Client:";
//
// userTextBox
//
this.userTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.userTextBox.Location = new System.Drawing.Point(87, 52);
this.userTextBox.Name = "userTextBox";
this.userTextBox.ReadOnly = true;
this.userTextBox.Size = new System.Drawing.Size(426, 20);
this.userTextBox.TabIndex = 5;
//
// clientTextBox
//
this.clientTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.clientTextBox.Location = new System.Drawing.Point(87, 78);
this.clientTextBox.Name = "clientTextBox";
this.clientTextBox.ReadOnly = true;
this.clientTextBox.Size = new System.Drawing.Size(426, 20);
this.clientTextBox.TabIndex = 7;
//
// RunView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.resultsGroupBox);
this.Controls.Add(this.clientTextBox);
this.Controls.Add(this.userTextBox);
this.Controls.Add(this.createdDateTextBox);
this.Controls.Add(this.randomSeedTextBox);
this.Controls.Add(this.clientLabel);
this.Controls.Add(this.userLabel);
this.Controls.Add(this.createdDateLabel);
this.Controls.Add(this.randomSeedLabel);
this.Name = "RunView";
this.Size = new System.Drawing.Size(513, 354);
this.resultsGroupBox.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label randomSeedLabel;
private System.Windows.Forms.TextBox randomSeedTextBox;
private System.Windows.Forms.Label createdDateLabel;
private System.Windows.Forms.TextBox createdDateTextBox;
private System.Windows.Forms.ListView resultsListView;
private System.Windows.Forms.ColumnHeader nameColumnHeader;
private System.Windows.Forms.ColumnHeader valueColumnHeader;
private System.Windows.Forms.ImageList imageList;
private System.Windows.Forms.GroupBox resultsGroupBox;
private System.Windows.Forms.Label userLabel;
private System.Windows.Forms.Label clientLabel;
private System.Windows.Forms.TextBox userTextBox;
private System.Windows.Forms.TextBox clientTextBox;
}
}