Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/NamedOKBItemView.Designer.cs @ 17246

Last change on this file since 17246 was 17246, checked in by gkronber, 5 years ago

#2925: merged r17037:17242 from trunk to branch

File size: 5.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.Administration {
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      this.SuspendLayout();
52      //
53      // storeButton
54      //
55      this.toolTip.SetToolTip(this.storeButton, "Store Data");
56      //
57      // nameLabel
58      //
59      this.nameLabel.AutoSize = true;
60      this.nameLabel.Location = new System.Drawing.Point(3, 32);
61      this.nameLabel.Name = "nameLabel";
62      this.nameLabel.Size = new System.Drawing.Size(38, 13);
63      this.nameLabel.TabIndex = 1;
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, 29);
71      this.nameTextBox.Name = "nameTextBox";
72      this.nameTextBox.Size = new System.Drawing.Size(278, 20);
73      this.nameTextBox.TabIndex = 2;
74      this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
75      //
76      // descriptionLabel
77      //
78      this.descriptionLabel.AutoSize = true;
79      this.descriptionLabel.Location = new System.Drawing.Point(3, 58);
80      this.descriptionLabel.Name = "descriptionLabel";
81      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
82      this.descriptionLabel.TabIndex = 3;
83      this.descriptionLabel.Text = "&Description:";
84      //
85      // descriptionTextBox
86      //
87      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
88                  | System.Windows.Forms.AnchorStyles.Right)));
89      this.descriptionTextBox.Location = new System.Drawing.Point(72, 55);
90      this.descriptionTextBox.Name = "descriptionTextBox";
91      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
92      this.descriptionTextBox.Size = new System.Drawing.Size(278, 20);
93      this.descriptionTextBox.TabIndex = 4;
94      this.descriptionTextBox.TextChanged += new System.EventHandler(this.descriptionTextBox_TextChanged);
95      this.descriptionTextBox.DoubleClick += new System.EventHandler(this.descriptionTextBox_DoubleClick);
96      //
97      // NamedOKBItemView
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.Controls.Add(this.descriptionTextBox);
102      this.Controls.Add(this.descriptionLabel);
103      this.Controls.Add(this.nameLabel);
104      this.Controls.Add(this.nameTextBox);
105      this.Name = "NamedOKBItemView";
106      this.Size = new System.Drawing.Size(350, 93);
107      this.Controls.SetChildIndex(this.storeButton, 0);
108      this.Controls.SetChildIndex(this.nameTextBox, 0);
109      this.Controls.SetChildIndex(this.nameLabel, 0);
110      this.Controls.SetChildIndex(this.descriptionLabel, 0);
111      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
112      this.ResumeLayout(false);
113      this.PerformLayout();
114
115    }
116
117    #endregion
118
119    protected System.Windows.Forms.TextBox nameTextBox;
120    protected System.Windows.Forms.Label nameLabel;
121    protected System.Windows.Forms.Label descriptionLabel;
122    protected System.Windows.Forms.TextBox descriptionTextBox;
123  }
124}
Note: See TracBrowser for help on using the repository browser.