Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/ArrayDataBaseView.Designer.cs @ 344

Last change on this file since 344 was 344, checked in by gkronber, 16 years ago

merged changes r338 r339 r340 r341 r342 r343 from the ticket-specific branch into the main trunk

File size: 4.5 KB
Line 
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
22using System;
23namespace HeuristicLab.Data {
24  partial class ArrayDataBaseView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.sizeLabel = new System.Windows.Forms.Label();
49      this.lengthTextBox = new System.Windows.Forms.TextBox();
50      this.dataGridView = new System.Windows.Forms.DataGridView();
51      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
52      this.SuspendLayout();
53      //
54      // sizeLabel
55      //
56      this.sizeLabel.AutoSize = true;
57      this.sizeLabel.Location = new System.Drawing.Point(3, 4);
58      this.sizeLabel.Name = "sizeLabel";
59      this.sizeLabel.Size = new System.Drawing.Size(30, 13);
60      this.sizeLabel.TabIndex = 0;
61      this.sizeLabel.Text = "Size:";
62      //
63      // lengthTextBox
64      //
65      this.lengthTextBox.AcceptsReturn = true;
66      this.lengthTextBox.Location = new System.Drawing.Point(39, 1);
67      this.lengthTextBox.Name = "lengthTextBox";
68      this.lengthTextBox.Size = new System.Drawing.Size(110, 20);
69      this.lengthTextBox.TabIndex = 1;
70      this.lengthTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.lengthTextBox_Validating);
71      this.lengthTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lengthTextBox_KeyDown);
72      //
73      // dataGridView
74      //
75      this.dataGridView.AllowUserToAddRows = false;
76      this.dataGridView.AllowUserToDeleteRows = false;
77      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
78                  | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
80      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
81      this.dataGridView.ColumnHeadersVisible = false;
82      this.dataGridView.Location = new System.Drawing.Point(3, 30);
83      this.dataGridView.Name = "dataGridView";
84      this.dataGridView.Size = new System.Drawing.Size(155, 226);
85      this.dataGridView.TabIndex = 2;
86      this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
87      //
88      // ArrayDataView
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92      this.Controls.Add(this.dataGridView);
93      this.Controls.Add(this.lengthTextBox);
94      this.Controls.Add(this.sizeLabel);
95      this.Name = "ArrayDataView";
96      this.Size = new System.Drawing.Size(163, 259);
97      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
98      this.ResumeLayout(false);
99      this.PerformLayout();
100
101    }
102
103    #endregion
104
105    private System.Windows.Forms.Label sizeLabel;
106    private System.Windows.Forms.TextBox lengthTextBox;
107    protected System.Windows.Forms.DataGridView dataGridView;
108  }
109}
Note: See TracBrowser for help on using the repository browser.