#region License Information /* HeuristicLab * Copyright (C) 2002-2008 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.DataAnalysis { partial class DatasetView { /// /// 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 && (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.rowsTextBox = new System.Windows.Forms.TextBox(); this.columnsTextBox = new System.Windows.Forms.TextBox(); this.dataGridView = new System.Windows.Forms.DataGridView(); this.rowsLabel = new System.Windows.Forms.Label(); this.columnsLabel = new System.Windows.Forms.Label(); this.nameLabel = new System.Windows.Forms.Label(); this.nameTextBox = new System.Windows.Forms.TextBox(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // rowsTextBox // this.rowsTextBox.Location = new System.Drawing.Point(46, 32); this.rowsTextBox.Name = "rowsTextBox"; this.rowsTextBox.ReadOnly = true; this.rowsTextBox.Size = new System.Drawing.Size(100, 20); this.rowsTextBox.TabIndex = 1; // // columnsTextBox // this.columnsTextBox.Location = new System.Drawing.Point(208, 32); this.columnsTextBox.Name = "columnsTextBox"; this.columnsTextBox.ReadOnly = true; this.columnsTextBox.Size = new System.Drawing.Size(100, 20); this.columnsTextBox.TabIndex = 2; // // dataGridView // this.dataGridView.AllowUserToAddRows = false; this.dataGridView.AllowUserToDeleteRows = false; 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.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Location = new System.Drawing.Point(3, 58); this.dataGridView.Name = "dataGridView"; this.dataGridView.Size = new System.Drawing.Size(554, 482); this.dataGridView.TabIndex = 3; this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating); // // rowsLabel // this.rowsLabel.AutoSize = true; this.rowsLabel.Location = new System.Drawing.Point(3, 35); this.rowsLabel.Name = "rowsLabel"; this.rowsLabel.Size = new System.Drawing.Size(37, 13); this.rowsLabel.TabIndex = 4; this.rowsLabel.Text = "Rows:"; // // columnsLabel // this.columnsLabel.AutoSize = true; this.columnsLabel.Location = new System.Drawing.Point(152, 35); this.columnsLabel.Name = "columnsLabel"; this.columnsLabel.Size = new System.Drawing.Size(50, 13); this.columnsLabel.TabIndex = 5; this.columnsLabel.Text = "Columns:"; // // nameLabel // this.nameLabel.AutoSize = true; this.nameLabel.Location = new System.Drawing.Point(3, 6); this.nameLabel.Name = "nameLabel"; this.nameLabel.Size = new System.Drawing.Size(41, 13); this.nameLabel.TabIndex = 6; this.nameLabel.Text = "Name: "; // // nameTextBox // this.nameTextBox.Location = new System.Drawing.Point(46, 3); this.nameTextBox.Name = "nameTextBox"; this.nameTextBox.ReadOnly = true; this.nameTextBox.Size = new System.Drawing.Size(262, 20); this.nameTextBox.TabIndex = 7; // // DatasetView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.nameTextBox); this.Controls.Add(this.nameLabel); this.Controls.Add(this.columnsLabel); this.Controls.Add(this.rowsLabel); this.Controls.Add(this.dataGridView); this.Controls.Add(this.columnsTextBox); this.Controls.Add(this.rowsTextBox); this.Name = "DatasetView"; this.Size = new System.Drawing.Size(560, 543); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox rowsTextBox; private System.Windows.Forms.TextBox columnsTextBox; private System.Windows.Forms.DataGridView dataGridView; private System.Windows.Forms.Label rowsLabel; private System.Windows.Forms.Label columnsLabel; private System.Windows.Forms.Label nameLabel; private System.Windows.Forms.TextBox nameTextBox; } }