[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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.DataAnalysis {
|
---|
| 23 | partial class DatasetView {
|
---|
| 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 && (components != null)) {
|
---|
| 35 | 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() {
|
---|
[232] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[2] | 48 | this.rowsTextBox = new System.Windows.Forms.TextBox();
|
---|
| 49 | this.columnsTextBox = new System.Windows.Forms.TextBox();
|
---|
| 50 | this.dataGridView = new System.Windows.Forms.DataGridView();
|
---|
| 51 | this.rowsLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.columnsLabel = new System.Windows.Forms.Label();
|
---|
| 53 | this.nameLabel = new System.Windows.Forms.Label();
|
---|
| 54 | this.nameTextBox = new System.Windows.Forms.TextBox();
|
---|
[232] | 55 | this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 56 | this.scaleValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 57 | this.originalValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
[2] | 58 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
---|
[232] | 59 | this.contextMenuStrip.SuspendLayout();
|
---|
[2] | 60 | this.SuspendLayout();
|
---|
| 61 | //
|
---|
| 62 | // rowsTextBox
|
---|
| 63 | //
|
---|
[232] | 64 | this.rowsTextBox.Location = new System.Drawing.Point(50, 29);
|
---|
[2] | 65 | this.rowsTextBox.Name = "rowsTextBox";
|
---|
| 66 | this.rowsTextBox.ReadOnly = true;
|
---|
| 67 | this.rowsTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 68 | this.rowsTextBox.TabIndex = 1;
|
---|
| 69 | //
|
---|
| 70 | // columnsTextBox
|
---|
| 71 | //
|
---|
[232] | 72 | this.columnsTextBox.Location = new System.Drawing.Point(217, 29);
|
---|
[2] | 73 | this.columnsTextBox.Name = "columnsTextBox";
|
---|
| 74 | this.columnsTextBox.ReadOnly = true;
|
---|
| 75 | this.columnsTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 76 | this.columnsTextBox.TabIndex = 2;
|
---|
| 77 | //
|
---|
| 78 | // dataGridView
|
---|
| 79 | //
|
---|
| 80 | this.dataGridView.AllowUserToAddRows = false;
|
---|
| 81 | this.dataGridView.AllowUserToDeleteRows = false;
|
---|
| 82 | this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 83 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 84 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 85 | this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
---|
[233] | 86 | this.dataGridView.ContextMenuStrip = this.contextMenuStrip;
|
---|
| 87 | this.dataGridView.Location = new System.Drawing.Point(3, 55);
|
---|
[2] | 88 | this.dataGridView.Name = "dataGridView";
|
---|
[233] | 89 | this.dataGridView.Size = new System.Drawing.Size(554, 485);
|
---|
[2] | 90 | this.dataGridView.TabIndex = 3;
|
---|
| 91 | this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
|
---|
| 92 | //
|
---|
| 93 | // rowsLabel
|
---|
| 94 | //
|
---|
| 95 | this.rowsLabel.AutoSize = true;
|
---|
[232] | 96 | this.rowsLabel.Location = new System.Drawing.Point(3, 32);
|
---|
[2] | 97 | this.rowsLabel.Name = "rowsLabel";
|
---|
| 98 | this.rowsLabel.Size = new System.Drawing.Size(37, 13);
|
---|
| 99 | this.rowsLabel.TabIndex = 4;
|
---|
| 100 | this.rowsLabel.Text = "Rows:";
|
---|
| 101 | //
|
---|
| 102 | // columnsLabel
|
---|
| 103 | //
|
---|
| 104 | this.columnsLabel.AutoSize = true;
|
---|
[232] | 105 | this.columnsLabel.Location = new System.Drawing.Point(161, 32);
|
---|
[2] | 106 | this.columnsLabel.Name = "columnsLabel";
|
---|
| 107 | this.columnsLabel.Size = new System.Drawing.Size(50, 13);
|
---|
| 108 | this.columnsLabel.TabIndex = 5;
|
---|
| 109 | this.columnsLabel.Text = "Columns:";
|
---|
| 110 | //
|
---|
| 111 | // nameLabel
|
---|
| 112 | //
|
---|
| 113 | this.nameLabel.AutoSize = true;
|
---|
| 114 | this.nameLabel.Location = new System.Drawing.Point(3, 6);
|
---|
| 115 | this.nameLabel.Name = "nameLabel";
|
---|
| 116 | this.nameLabel.Size = new System.Drawing.Size(41, 13);
|
---|
| 117 | this.nameLabel.TabIndex = 6;
|
---|
| 118 | this.nameLabel.Text = "Name: ";
|
---|
| 119 | //
|
---|
| 120 | // nameTextBox
|
---|
| 121 | //
|
---|
[232] | 122 | this.nameTextBox.Location = new System.Drawing.Point(50, 3);
|
---|
[2] | 123 | this.nameTextBox.Name = "nameTextBox";
|
---|
| 124 | this.nameTextBox.ReadOnly = true;
|
---|
[232] | 125 | this.nameTextBox.Size = new System.Drawing.Size(219, 20);
|
---|
[2] | 126 | this.nameTextBox.TabIndex = 7;
|
---|
| 127 | //
|
---|
[232] | 128 | // contextMenuStrip
|
---|
| 129 | //
|
---|
| 130 | this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 131 | this.scaleValuesToolStripMenuItem,
|
---|
| 132 | this.originalValuesToolStripMenuItem});
|
---|
| 133 | this.contextMenuStrip.Name = "contextMenuStrip";
|
---|
| 134 | this.contextMenuStrip.Size = new System.Drawing.Size(146, 48);
|
---|
| 135 | //
|
---|
| 136 | // scaleValuesToolStripMenuItem
|
---|
| 137 | //
|
---|
| 138 | this.scaleValuesToolStripMenuItem.Name = "scaleValuesToolStripMenuItem";
|
---|
| 139 | this.scaleValuesToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
|
---|
| 140 | this.scaleValuesToolStripMenuItem.Text = "Scale values";
|
---|
| 141 | this.scaleValuesToolStripMenuItem.Click += new System.EventHandler(this.scaleValuesToolStripMenuItem_Click);
|
---|
| 142 | //
|
---|
| 143 | // originalValuesToolStripMenuItem
|
---|
| 144 | //
|
---|
| 145 | this.originalValuesToolStripMenuItem.Name = "originalValuesToolStripMenuItem";
|
---|
| 146 | this.originalValuesToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
|
---|
| 147 | this.originalValuesToolStripMenuItem.Text = "Unscale values";
|
---|
| 148 | this.originalValuesToolStripMenuItem.Click += new System.EventHandler(this.originalValuesToolStripMenuItem_Click);
|
---|
| 149 | //
|
---|
[2] | 150 | // DatasetView
|
---|
| 151 | //
|
---|
| 152 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 153 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 154 | this.Controls.Add(this.nameTextBox);
|
---|
| 155 | this.Controls.Add(this.nameLabel);
|
---|
| 156 | this.Controls.Add(this.columnsLabel);
|
---|
| 157 | this.Controls.Add(this.rowsLabel);
|
---|
| 158 | this.Controls.Add(this.dataGridView);
|
---|
| 159 | this.Controls.Add(this.columnsTextBox);
|
---|
| 160 | this.Controls.Add(this.rowsTextBox);
|
---|
| 161 | this.Name = "DatasetView";
|
---|
| 162 | this.Size = new System.Drawing.Size(560, 543);
|
---|
| 163 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
[232] | 164 | this.contextMenuStrip.ResumeLayout(false);
|
---|
[2] | 165 | this.ResumeLayout(false);
|
---|
| 166 | this.PerformLayout();
|
---|
| 167 |
|
---|
| 168 | }
|
---|
| 169 |
|
---|
| 170 | #endregion
|
---|
| 171 |
|
---|
| 172 | private System.Windows.Forms.TextBox rowsTextBox;
|
---|
| 173 | private System.Windows.Forms.TextBox columnsTextBox;
|
---|
| 174 | private System.Windows.Forms.DataGridView dataGridView;
|
---|
| 175 | private System.Windows.Forms.Label rowsLabel;
|
---|
| 176 | private System.Windows.Forms.Label columnsLabel;
|
---|
| 177 | private System.Windows.Forms.Label nameLabel;
|
---|
| 178 | private System.Windows.Forms.TextBox nameTextBox;
|
---|
[232] | 179 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
---|
| 180 | private System.Windows.Forms.ToolStripMenuItem scaleValuesToolStripMenuItem;
|
---|
| 181 | private System.Windows.Forms.ToolStripMenuItem originalValuesToolStripMenuItem;
|
---|
[2] | 182 | }
|
---|
| 183 | }
|
---|