Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemView.Designer.cs @ 4477

Last change on this file since 4477 was 4477, checked in by gkronber, 14 years ago

Merged r4458, r4459,r4462,r4464 from data analysis exploration branch into trunk. #1142

File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22namespace HeuristicLab.Core.Views {
23  partial class NamedItemView {
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) {
35        if (components != null) 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() {
47      this.components = new System.ComponentModel.Container();
48      this.nameLabel = new System.Windows.Forms.Label();
49      this.nameTextBox = new System.Windows.Forms.TextBox();
50      this.descriptionLabel = new System.Windows.Forms.Label();
51      this.descriptionTextBox = new System.Windows.Forms.TextBox();
52      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
53      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
54      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
55      this.SuspendLayout();
56      //
57      // nameLabel
58      //
59      this.nameLabel.AutoSize = true;
60      this.nameLabel.Location = new System.Drawing.Point(3, 3);
61      this.nameLabel.Name = "nameLabel";
62      this.nameLabel.Size = new System.Drawing.Size(38, 13);
63      this.nameLabel.TabIndex = 0;
64      this.nameLabel.Text = "&Name:";
65      //
66      // nameTextBox
67      //
68      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
69                  | System.Windows.Forms.AnchorStyles.Right)));
70      this.nameTextBox.Location = new System.Drawing.Point(72, 0);
71      this.nameTextBox.Name = "nameTextBox";
72      this.nameTextBox.Size = new System.Drawing.Size(279, 20);
73      this.nameTextBox.TabIndex = 1;
74      this.nameTextBox.Validated += new System.EventHandler(this.nameTextBox_Validated);
75      this.nameTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nameTextBox_KeyDown);
76      this.nameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameTextBox_Validating);
77      //
78      // descriptionLabel
79      //
80      this.descriptionLabel.AutoSize = true;
81      this.descriptionLabel.Location = new System.Drawing.Point(3, 29);
82      this.descriptionLabel.Name = "descriptionLabel";
83      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
84      this.descriptionLabel.TabIndex = 2;
85      this.descriptionLabel.Text = "&Description:";
86      //
87      // descriptionTextBox
88      //
89      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
90                  | System.Windows.Forms.AnchorStyles.Right)));
91      this.descriptionTextBox.Location = new System.Drawing.Point(72, 26);
92      this.descriptionTextBox.Name = "descriptionTextBox";
93      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
94      this.descriptionTextBox.Size = new System.Drawing.Size(279, 20);
95      this.descriptionTextBox.TabIndex = 3;
96      this.descriptionTextBox.DoubleClick += new System.EventHandler(this.descriptionTextBox_DoubleClick);
97      this.descriptionTextBox.Validated += new System.EventHandler(this.descriptionTextBox_Validated);
98      //
99      // errorProvider
100      //
101      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
102      this.errorProvider.ContainerControl = this;
103      //
104      // NamedItemView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.Controls.Add(this.descriptionTextBox);
109      this.Controls.Add(this.nameTextBox);
110      this.Controls.Add(this.descriptionLabel);
111      this.Controls.Add(this.nameLabel);
112      this.Name = "NamedItemView";
113      this.Size = new System.Drawing.Size(351, 52);
114      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
115      this.ResumeLayout(false);
116      this.PerformLayout();
117
118    }
119
120    #endregion
121
122    protected System.Windows.Forms.TextBox nameTextBox;
123    protected System.Windows.Forms.Label nameLabel;
124    protected System.Windows.Forms.Label descriptionLabel;
125    protected System.Windows.Forms.TextBox descriptionTextBox;
126    protected System.Windows.Forms.ErrorProvider errorProvider;
127    protected System.Windows.Forms.ToolTip toolTip;
128  }
129}
Note: See TracBrowser for help on using the repository browser.