Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on OKB data model and services (#1174)

File size: 5.7 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.nameLabel = new System.Windows.Forms.Label();
48      this.nameTextBox = new System.Windows.Forms.TextBox();
49      this.descriptionLabel = new System.Windows.Forms.Label();
50      this.descriptionTextBox = new System.Windows.Forms.TextBox();
51      ((System.ComponentModel.ISupportInitialize)(this.modifiedPictureBox)).BeginInit();
52      this.SuspendLayout();
53      //
54      // storeButton
55      //
56      this.toolTip.SetToolTip(this.storeButton, "Store Data");
57      //
58      // modifiedPictureBox
59      //
60      this.modifiedPictureBox.Location = new System.Drawing.Point(308, 3);
61      this.modifiedPictureBox.Size = new System.Drawing.Size(39, 130);
62      //
63      // nameLabel
64      //
65      this.nameLabel.AutoSize = true;
66      this.nameLabel.Location = new System.Drawing.Point(3, 32);
67      this.nameLabel.Name = "nameLabel";
68      this.nameLabel.Size = new System.Drawing.Size(38, 13);
69      this.nameLabel.TabIndex = 1;
70      this.nameLabel.Text = "&Name:";
71      //
72      // nameTextBox
73      //
74      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
75                  | System.Windows.Forms.AnchorStyles.Right)));
76      this.nameTextBox.Location = new System.Drawing.Point(72, 29);
77      this.nameTextBox.Name = "nameTextBox";
78      this.nameTextBox.Size = new System.Drawing.Size(230, 20);
79      this.nameTextBox.TabIndex = 2;
80      this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
81      this.nameTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nameTextBox_KeyDown);
82      //
83      // descriptionLabel
84      //
85      this.descriptionLabel.AutoSize = true;
86      this.descriptionLabel.Location = new System.Drawing.Point(3, 58);
87      this.descriptionLabel.Name = "descriptionLabel";
88      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
89      this.descriptionLabel.TabIndex = 3;
90      this.descriptionLabel.Text = "&Description:";
91      //
92      // descriptionTextBox
93      //
94      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.descriptionTextBox.Location = new System.Drawing.Point(72, 55);
97      this.descriptionTextBox.Name = "descriptionTextBox";
98      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
99      this.descriptionTextBox.Size = new System.Drawing.Size(230, 20);
100      this.descriptionTextBox.TabIndex = 4;
101      this.descriptionTextBox.TextChanged += new System.EventHandler(this.descriptionTextBox_TextChanged);
102      this.descriptionTextBox.DoubleClick += new System.EventHandler(this.descriptionTextBox_DoubleClick);
103      //
104      // NamedOKBItemView
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.descriptionLabel);
110      this.Controls.Add(this.nameLabel);
111      this.Controls.Add(this.nameTextBox);
112      this.Name = "NamedOKBItemView";
113      this.Size = new System.Drawing.Size(350, 229);
114      this.Controls.SetChildIndex(this.modifiedPictureBox, 0);
115      this.Controls.SetChildIndex(this.storeButton, 0);
116      this.Controls.SetChildIndex(this.nameTextBox, 0);
117      this.Controls.SetChildIndex(this.nameLabel, 0);
118      this.Controls.SetChildIndex(this.descriptionLabel, 0);
119      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
120      ((System.ComponentModel.ISupportInitialize)(this.modifiedPictureBox)).EndInit();
121      this.ResumeLayout(false);
122      this.PerformLayout();
123
124    }
125
126    #endregion
127
128    protected System.Windows.Forms.TextBox nameTextBox;
129    protected System.Windows.Forms.Label nameLabel;
130    protected System.Windows.Forms.Label descriptionLabel;
131    protected System.Windows.Forms.TextBox descriptionTextBox;
132  }
133}
Note: See TracBrowser for help on using the repository browser.