[2669] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2669] | 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 | namespace HeuristicLab.Data.Views {
|
---|
[3048] | 23 | partial class StringConvertibleMatrixView {
|
---|
[2669] | 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing) {
|
---|
| 35 | if (components != null) components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
[2676] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[2677] | 48 | this.rowsLabel = new System.Windows.Forms.Label();
|
---|
| 49 | this.rowsTextBox = new System.Windows.Forms.TextBox();
|
---|
[2669] | 50 | this.dataGridView = new System.Windows.Forms.DataGridView();
|
---|
[2676] | 51 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
[2677] | 52 | this.columnsTextBox = new System.Windows.Forms.TextBox();
|
---|
| 53 | this.columnsLabel = new System.Windows.Forms.Label();
|
---|
[3316] | 54 | this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 55 | this.ShowHideColumns = new System.Windows.Forms.ToolStripMenuItem();
|
---|
[2669] | 56 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
---|
[2676] | 57 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
[3316] | 58 | this.contextMenu.SuspendLayout();
|
---|
[2669] | 59 | this.SuspendLayout();
|
---|
| 60 | //
|
---|
[2677] | 61 | // rowsLabel
|
---|
[2669] | 62 | //
|
---|
[2677] | 63 | this.rowsLabel.AutoSize = true;
|
---|
| 64 | this.rowsLabel.Location = new System.Drawing.Point(3, 3);
|
---|
| 65 | this.rowsLabel.Name = "rowsLabel";
|
---|
| 66 | this.rowsLabel.Size = new System.Drawing.Size(37, 13);
|
---|
| 67 | this.rowsLabel.TabIndex = 0;
|
---|
| 68 | this.rowsLabel.Text = "&Rows:";
|
---|
[2669] | 69 | //
|
---|
[2677] | 70 | // rowsTextBox
|
---|
[2669] | 71 | //
|
---|
[2677] | 72 | this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[2669] | 73 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2677] | 74 | this.rowsTextBox.Location = new System.Drawing.Point(69, 0);
|
---|
| 75 | this.rowsTextBox.Name = "rowsTextBox";
|
---|
| 76 | this.rowsTextBox.Size = new System.Drawing.Size(355, 20);
|
---|
| 77 | this.rowsTextBox.TabIndex = 1;
|
---|
| 78 | this.rowsTextBox.Validated += new System.EventHandler(this.rowsTextBox_Validated);
|
---|
| 79 | this.rowsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rowsTextBox_KeyDown);
|
---|
| 80 | this.rowsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.rowsTextBox_Validating);
|
---|
[2669] | 81 | //
|
---|
| 82 | // dataGridView
|
---|
| 83 | //
|
---|
| 84 | this.dataGridView.AllowUserToAddRows = false;
|
---|
| 85 | this.dataGridView.AllowUserToDeleteRows = false;
|
---|
[3346] | 86 | this.dataGridView.AllowUserToOrderColumns = true;
|
---|
[2669] | 87 | this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 88 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 89 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 90 | this.dataGridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
|
---|
| 91 | this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
---|
[2677] | 92 | this.dataGridView.Location = new System.Drawing.Point(0, 52);
|
---|
[2669] | 93 | this.dataGridView.Name = "dataGridView";
|
---|
[3333] | 94 | this.dataGridView.RowHeadersWidth = 160;
|
---|
[2677] | 95 | this.dataGridView.Size = new System.Drawing.Size(424, 352);
|
---|
| 96 | this.dataGridView.TabIndex = 4;
|
---|
[3312] | 97 | this.dataGridView.VirtualMode = true;
|
---|
| 98 | this.dataGridView.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dataGridView_Scroll);
|
---|
[3314] | 99 | this.dataGridView.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_ColumnHeaderMouseClick);
|
---|
[3312] | 100 | this.dataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridView_CellValueNeeded);
|
---|
[2676] | 101 | this.dataGridView.CellParsing += new System.Windows.Forms.DataGridViewCellParsingEventHandler(this.dataGridView_CellParsing);
|
---|
[2669] | 102 | this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
|
---|
[2676] | 103 | this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
|
---|
[3643] | 104 | this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_KeyDown);
|
---|
[3312] | 105 | this.dataGridView.Resize += new System.EventHandler(this.dataGridView_Resize);
|
---|
[2669] | 106 | //
|
---|
[2676] | 107 | // errorProvider
|
---|
| 108 | //
|
---|
| 109 | this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
|
---|
| 110 | this.errorProvider.ContainerControl = this;
|
---|
| 111 | //
|
---|
[2677] | 112 | // columnsTextBox
|
---|
[2669] | 113 | //
|
---|
[2677] | 114 | this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 115 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 116 | this.columnsTextBox.Location = new System.Drawing.Point(69, 26);
|
---|
| 117 | this.columnsTextBox.Name = "columnsTextBox";
|
---|
| 118 | this.columnsTextBox.Size = new System.Drawing.Size(355, 20);
|
---|
| 119 | this.columnsTextBox.TabIndex = 3;
|
---|
| 120 | this.columnsTextBox.Validated += new System.EventHandler(this.columnsTextBox_Validated);
|
---|
| 121 | this.columnsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.columnsTextBox_KeyDown);
|
---|
| 122 | this.columnsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.columnsTextBox_Validating);
|
---|
| 123 | //
|
---|
| 124 | // columnsLabel
|
---|
| 125 | //
|
---|
| 126 | this.columnsLabel.AutoSize = true;
|
---|
| 127 | this.columnsLabel.Location = new System.Drawing.Point(3, 29);
|
---|
| 128 | this.columnsLabel.Name = "columnsLabel";
|
---|
| 129 | this.columnsLabel.Size = new System.Drawing.Size(50, 13);
|
---|
| 130 | this.columnsLabel.TabIndex = 2;
|
---|
| 131 | this.columnsLabel.Text = "&Columns:";
|
---|
| 132 | //
|
---|
[3316] | 133 | // contextMenu
|
---|
| 134 | //
|
---|
| 135 | this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 136 | this.ShowHideColumns});
|
---|
| 137 | this.contextMenu.Name = "contextMenu";
|
---|
| 138 | this.contextMenu.Size = new System.Drawing.Size(191, 26);
|
---|
| 139 | //
|
---|
| 140 | // ShowHideColumns
|
---|
| 141 | //
|
---|
| 142 | this.ShowHideColumns.Name = "ShowHideColumns";
|
---|
| 143 | this.ShowHideColumns.Size = new System.Drawing.Size(190, 22);
|
---|
| 144 | this.ShowHideColumns.Text = "Show / Hide Columns";
|
---|
| 145 | this.ShowHideColumns.Click += new System.EventHandler(this.ShowHideColumns_Click);
|
---|
| 146 | //
|
---|
[3048] | 147 | // StringConvertibleMatrixView
|
---|
[2677] | 148 | //
|
---|
[2669] | 149 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 150 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 151 | this.Controls.Add(this.dataGridView);
|
---|
[2677] | 152 | this.Controls.Add(this.columnsTextBox);
|
---|
| 153 | this.Controls.Add(this.rowsTextBox);
|
---|
| 154 | this.Controls.Add(this.columnsLabel);
|
---|
| 155 | this.Controls.Add(this.rowsLabel);
|
---|
[3048] | 156 | this.Name = "StringConvertibleMatrixView";
|
---|
[2669] | 157 | this.Size = new System.Drawing.Size(424, 404);
|
---|
| 158 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
[2676] | 159 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
[3316] | 160 | this.contextMenu.ResumeLayout(false);
|
---|
[2669] | 161 | this.ResumeLayout(false);
|
---|
| 162 | this.PerformLayout();
|
---|
| 163 |
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 | #endregion
|
---|
| 167 |
|
---|
[3632] | 168 | protected System.Windows.Forms.Label rowsLabel;
|
---|
| 169 | protected System.Windows.Forms.TextBox rowsTextBox;
|
---|
| 170 | protected System.Windows.Forms.ErrorProvider errorProvider;
|
---|
| 171 | protected System.Windows.Forms.TextBox columnsTextBox;
|
---|
| 172 | protected System.Windows.Forms.Label columnsLabel;
|
---|
| 173 | protected System.Windows.Forms.ContextMenuStrip contextMenu;
|
---|
| 174 | protected System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
|
---|
[3333] | 175 | protected System.Windows.Forms.DataGridView dataGridView;
|
---|
[2669] | 176 |
|
---|
| 177 | }
|
---|
| 178 | }
|
---|