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