#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 using System; namespace HeuristicLab.Data { partial class ArrayDataBaseView { /// /// 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.sizeLabel = new System.Windows.Forms.Label(); this.lengthTextBox = new System.Windows.Forms.TextBox(); this.dataGridView = new System.Windows.Forms.DataGridView(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // sizeLabel // this.sizeLabel.AutoSize = true; this.sizeLabel.Location = new System.Drawing.Point(3, 4); this.sizeLabel.Name = "sizeLabel"; this.sizeLabel.Size = new System.Drawing.Size(30, 13); this.sizeLabel.TabIndex = 0; this.sizeLabel.Text = "Size:"; // // lengthTextBox // this.lengthTextBox.AcceptsReturn = true; this.lengthTextBox.Location = new System.Drawing.Point(39, 1); this.lengthTextBox.Name = "lengthTextBox"; this.lengthTextBox.Size = new System.Drawing.Size(110, 20); this.lengthTextBox.TabIndex = 1; this.lengthTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.lengthTextBox_Validating); this.lengthTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lengthTextBox_KeyDown); // // 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.ColumnHeadersVisible = false; this.dataGridView.Location = new System.Drawing.Point(3, 30); this.dataGridView.Name = "dataGridView"; this.dataGridView.Size = new System.Drawing.Size(155, 226); this.dataGridView.TabIndex = 2; this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating); // // ArrayDataView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.dataGridView); this.Controls.Add(this.lengthTextBox); this.Controls.Add(this.sizeLabel); this.Name = "ArrayDataView"; this.Size = new System.Drawing.Size(163, 259); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label sizeLabel; private System.Windows.Forms.TextBox lengthTextBox; protected System.Windows.Forms.DataGridView dataGridView; } }