Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/NamedOKBItemView.Designer.cs @ 4426

Last change on this file since 4426 was 4426, checked in by swagner, 14 years ago

Worked on OKB data model and services (#1174)

File size: 5.3 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.Clients.OKB {
23  partial class NamedOKBItemView {
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.toolTip = new System.Windows.Forms.ToolTip(this.components);
53      this.SuspendLayout();
54      //
55      // nameLabel
56      //
57      this.nameLabel.AutoSize = true;
58      this.nameLabel.Location = new System.Drawing.Point(3, 32);
59      this.nameLabel.Name = "nameLabel";
60      this.nameLabel.Size = new System.Drawing.Size(38, 13);
61      this.nameLabel.TabIndex = 1;
62      this.nameLabel.Text = "&Name:";
63      //
64      // nameTextBox
65      //
66      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.nameTextBox.Location = new System.Drawing.Point(72, 29);
69      this.nameTextBox.Name = "nameTextBox";
70      this.nameTextBox.Size = new System.Drawing.Size(279, 20);
71      this.nameTextBox.TabIndex = 2;
72      this.nameTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nameTextBox_KeyDown);
73      this.nameTextBox.Validated += new System.EventHandler(this.nameTextBox_Validated);
74      //
75      // descriptionLabel
76      //
77      this.descriptionLabel.AutoSize = true;
78      this.descriptionLabel.Location = new System.Drawing.Point(3, 58);
79      this.descriptionLabel.Name = "descriptionLabel";
80      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
81      this.descriptionLabel.TabIndex = 3;
82      this.descriptionLabel.Text = "&Description:";
83      //
84      // descriptionTextBox
85      //
86      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.descriptionTextBox.Location = new System.Drawing.Point(72, 55);
89      this.descriptionTextBox.Name = "descriptionTextBox";
90      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
91      this.descriptionTextBox.Size = new System.Drawing.Size(279, 20);
92      this.descriptionTextBox.TabIndex = 4;
93      this.descriptionTextBox.DoubleClick += new System.EventHandler(this.descriptionTextBox_DoubleClick);
94      this.descriptionTextBox.Validated += new System.EventHandler(this.descriptionTextBox_Validated);
95      //
96      // NamedOKBItemView
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.Controls.Add(this.descriptionTextBox);
101      this.Controls.Add(this.descriptionLabel);
102      this.Controls.Add(this.nameLabel);
103      this.Controls.Add(this.nameTextBox);
104      this.Name = "NamedOKBItemView";
105      this.Size = new System.Drawing.Size(351, 80);
106      this.Controls.SetChildIndex(this.storeButton, 0);
107      this.Controls.SetChildIndex(this.nameTextBox, 0);
108      this.Controls.SetChildIndex(this.nameLabel, 0);
109      this.Controls.SetChildIndex(this.descriptionLabel, 0);
110      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
111      this.ResumeLayout(false);
112      this.PerformLayout();
113
114    }
115
116    #endregion
117
118    protected System.Windows.Forms.TextBox nameTextBox;
119    protected System.Windows.Forms.Label nameLabel;
120    protected System.Windows.Forms.Label descriptionLabel;
121    protected System.Windows.Forms.TextBox descriptionTextBox;
122    protected System.Windows.Forms.ToolTip toolTip;
123  }
124}
Note: See TracBrowser for help on using the repository browser.