Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/MatrixDataBaseView.Designer.cs @ 1343

Last change on this file since 1343 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: 5.9 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 MatrixDataBaseView {
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.rowsLabel = new System.Windows.Forms.Label();
49      this.rowsTextBox = new System.Windows.Forms.TextBox();
50      this.dataGridView = new System.Windows.Forms.DataGridView();
51      this.columnsTextBox = new System.Windows.Forms.TextBox();
52      this.columnsLabel = new System.Windows.Forms.Label();
53      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
54      this.SuspendLayout();
55      //
56      // rowsLabel
57      //
58      this.rowsLabel.AutoSize = true;
59      this.rowsLabel.Location = new System.Drawing.Point(3, 4);
60      this.rowsLabel.Name = "rowsLabel";
61      this.rowsLabel.Size = new System.Drawing.Size(37, 13);
62      this.rowsLabel.TabIndex = 0;
63      this.rowsLabel.Text = "Rows:";
64      //
65      // rowsTextBox
66      //
67      this.rowsTextBox.AcceptsReturn = true;
68      this.rowsTextBox.Location = new System.Drawing.Point(39, 1);
69      this.rowsTextBox.Name = "rowsTextBox";
70      this.rowsTextBox.Size = new System.Drawing.Size(110, 20);
71      this.rowsTextBox.TabIndex = 1;
72      this.rowsTextBox.Text = "0";
73      this.rowsTextBox.Validated += new System.EventHandler(this.textBox_Validated);
74      this.rowsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
75      this.rowsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
76      //
77      // dataGridView
78      //
79      this.dataGridView.AllowUserToAddRows = false;
80      this.dataGridView.AllowUserToDeleteRows = false;
81      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
82                  | System.Windows.Forms.AnchorStyles.Left)
83                  | System.Windows.Forms.AnchorStyles.Right)));
84      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
85      this.dataGridView.ColumnHeadersVisible = false;
86      this.dataGridView.Location = new System.Drawing.Point(3, 27);
87      this.dataGridView.Name = "dataGridView";
88      this.dataGridView.Size = new System.Drawing.Size(383, 293);
89      this.dataGridView.TabIndex = 2;
90      this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
91      //
92      // columnsTextBox
93      //
94      this.columnsTextBox.AcceptsReturn = true;
95      this.columnsTextBox.Location = new System.Drawing.Point(215, 1);
96      this.columnsTextBox.Name = "columnsTextBox";
97      this.columnsTextBox.Size = new System.Drawing.Size(110, 20);
98      this.columnsTextBox.TabIndex = 4;
99      this.columnsTextBox.Text = "0";
100      this.columnsTextBox.Validated += new System.EventHandler(this.textBox_Validated);
101      this.columnsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
102      this.columnsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
103      //
104      // columnsLabel
105      //
106      this.columnsLabel.AutoSize = true;
107      this.columnsLabel.Location = new System.Drawing.Point(159, 4);
108      this.columnsLabel.Name = "columnsLabel";
109      this.columnsLabel.Size = new System.Drawing.Size(50, 13);
110      this.columnsLabel.TabIndex = 3;
111      this.columnsLabel.Text = "Columns:";
112      //
113      // MatrixDataBaseView
114      //
115      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
117      this.Controls.Add(this.columnsTextBox);
118      this.Controls.Add(this.columnsLabel);
119      this.Controls.Add(this.dataGridView);
120      this.Controls.Add(this.rowsTextBox);
121      this.Controls.Add(this.rowsLabel);
122      this.Name = "MatrixDataBaseView";
123      this.Size = new System.Drawing.Size(391, 323);
124      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
125      this.ResumeLayout(false);
126      this.PerformLayout();
127
128    }
129
130    #endregion
131
132    private System.Windows.Forms.Label rowsLabel;
133    private System.Windows.Forms.TextBox rowsTextBox;
134    protected System.Windows.Forms.DataGridView dataGridView;
135    private System.Windows.Forms.TextBox columnsTextBox;
136    private System.Windows.Forms.Label columnsLabel;
137  }
138}
Note: See TracBrowser for help on using the repository browser.