#region License Information
/* HeuristicLab
* Copyright (C) 2002-2018 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.Data.Views {
partial class StringConvertibleMatrixView {
///
/// 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.rowsLabel = new System.Windows.Forms.Label();
this.rowsTextBox = new System.Windows.Forms.TextBox();
this.dataGridView = new System.Windows.Forms.DataGridView();
this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
this.columnsTextBox = new System.Windows.Forms.TextBox();
this.columnsLabel = new System.Windows.Forms.Label();
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ShowHideColumns = new System.Windows.Forms.ToolStripMenuItem();
this.statisticsTextBox = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
this.contextMenu.SuspendLayout();
this.SuspendLayout();
//
// rowsLabel
//
this.rowsLabel.AutoSize = true;
this.rowsLabel.Location = new System.Drawing.Point(3, 3);
this.rowsLabel.Name = "rowsLabel";
this.rowsLabel.Size = new System.Drawing.Size(37, 13);
this.rowsLabel.TabIndex = 0;
this.rowsLabel.Text = "&Rows:";
//
// rowsTextBox
//
this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.rowsTextBox.Location = new System.Drawing.Point(69, 0);
this.rowsTextBox.Name = "rowsTextBox";
this.rowsTextBox.Size = new System.Drawing.Size(355, 20);
this.rowsTextBox.TabIndex = 1;
this.rowsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rowsTextBox_KeyDown);
this.rowsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.rowsTextBox_Validating);
this.rowsTextBox.Validated += new System.EventHandler(this.rowsTextBox_Validated);
//
// dataGridView
//
this.dataGridView.AllowUserToAddRows = false;
this.dataGridView.AllowUserToDeleteRows = false;
this.dataGridView.AllowUserToOrderColumns = true;
this.dataGridView.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.dataGridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.dataGridView.Location = new System.Drawing.Point(0, 52);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowHeadersWidth = 160;
this.dataGridView.Size = new System.Drawing.Size(424, 330);
this.dataGridView.TabIndex = 4;
this.dataGridView.VirtualMode = true;
this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
this.dataGridView.CellParsing += new System.Windows.Forms.DataGridViewCellParsingEventHandler(this.dataGridView_CellParsing);
this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
this.dataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridView_CellValueNeeded);
this.dataGridView.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_ColumnHeaderMouseClick);
this.dataGridView.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dataGridView_Scroll);
this.dataGridView.SelectionChanged += new System.EventHandler(this.dataGridView_SelectionChanged);
this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_KeyDown);
this.dataGridView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dataGridView_MouseClick);
this.dataGridView.Resize += new System.EventHandler(this.dataGridView_Resize);
//
// errorProvider
//
this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
this.errorProvider.ContainerControl = this;
//
// columnsTextBox
//
this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.columnsTextBox.Location = new System.Drawing.Point(69, 26);
this.columnsTextBox.Name = "columnsTextBox";
this.columnsTextBox.Size = new System.Drawing.Size(355, 20);
this.columnsTextBox.TabIndex = 3;
this.columnsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.columnsTextBox_KeyDown);
this.columnsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.columnsTextBox_Validating);
this.columnsTextBox.Validated += new System.EventHandler(this.columnsTextBox_Validated);
//
// columnsLabel
//
this.columnsLabel.AutoSize = true;
this.columnsLabel.Location = new System.Drawing.Point(3, 29);
this.columnsLabel.Name = "columnsLabel";
this.columnsLabel.Size = new System.Drawing.Size(50, 13);
this.columnsLabel.TabIndex = 2;
this.columnsLabel.Text = "&Columns:";
//
// contextMenu
//
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ShowHideColumns});
this.contextMenu.Name = "contextMenu";
this.contextMenu.Size = new System.Drawing.Size(191, 26);
//
// ShowHideColumns
//
this.ShowHideColumns.Name = "ShowHideColumns";
this.ShowHideColumns.Size = new System.Drawing.Size(190, 22);
this.ShowHideColumns.Text = "Show / Hide Columns";
this.ShowHideColumns.Click += new System.EventHandler(this.ShowHideColumns_Click);
//
// statisticsTextBox
//
this.statisticsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.statisticsTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.statisticsTextBox.Location = new System.Drawing.Point(3, 388);
this.statisticsTextBox.Name = "statisticsTextBox";
this.statisticsTextBox.Size = new System.Drawing.Size(418, 13);
this.statisticsTextBox.TabIndex = 5;
this.statisticsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// StringConvertibleMatrixView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.Controls.Add(this.columnsTextBox);
this.Controls.Add(this.dataGridView);
this.Controls.Add(this.rowsTextBox);
this.Controls.Add(this.columnsLabel);
this.Controls.Add(this.rowsLabel);
this.Controls.Add(this.statisticsTextBox);
this.Name = "StringConvertibleMatrixView";
this.Size = new System.Drawing.Size(424, 404);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
this.contextMenu.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
protected System.Windows.Forms.Label rowsLabel;
protected System.Windows.Forms.TextBox rowsTextBox;
protected System.Windows.Forms.ErrorProvider errorProvider;
protected System.Windows.Forms.TextBox columnsTextBox;
protected System.Windows.Forms.Label columnsLabel;
protected System.Windows.Forms.ContextMenuStrip contextMenu;
protected System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
protected System.Windows.Forms.DataGridView dataGridView;
protected System.Windows.Forms.TextBox statisticsTextBox;
}
}