Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/VariableView.Designer.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 6.1 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
22namespace HeuristicLab.Core {
23  partial class VariableView {
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 (chooseItemDialog != null) chooseItemDialog.Dispose();
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.nameLabel = new System.Windows.Forms.Label();
49      this.nameTextBox = new System.Windows.Forms.TextBox();
50      this.valueLabel = new System.Windows.Forms.Label();
51      this.valueTextBox = new System.Windows.Forms.TextBox();
52      this.editorGroupBox = new System.Windows.Forms.GroupBox();
53      this.setVariableValueButton = new System.Windows.Forms.Button();
54      this.SuspendLayout();
55      //
56      // nameLabel
57      //
58      this.nameLabel.AutoSize = true;
59      this.nameLabel.Location = new System.Drawing.Point(3, 3);
60      this.nameLabel.Name = "nameLabel";
61      this.nameLabel.Size = new System.Drawing.Size(38, 13);
62      this.nameLabel.TabIndex = 0;
63      this.nameLabel.Text = "&Name:";
64      //
65      // nameTextBox
66      //
67      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
68                  | System.Windows.Forms.AnchorStyles.Right)));
69      this.nameTextBox.Location = new System.Drawing.Point(50, 0);
70      this.nameTextBox.Name = "nameTextBox";
71      this.nameTextBox.Size = new System.Drawing.Size(153, 20);
72      this.nameTextBox.TabIndex = 1;
73      this.nameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameTextBox_Validating);
74      //
75      // valueLabel
76      //
77      this.valueLabel.AutoSize = true;
78      this.valueLabel.Location = new System.Drawing.Point(3, 29);
79      this.valueLabel.Name = "valueLabel";
80      this.valueLabel.Size = new System.Drawing.Size(37, 13);
81      this.valueLabel.TabIndex = 2;
82      this.valueLabel.Text = "&Value:";
83      //
84      // valueTextBox
85      //
86      this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.valueTextBox.Location = new System.Drawing.Point(50, 26);
89      this.valueTextBox.Name = "valueTextBox";
90      this.valueTextBox.ReadOnly = true;
91      this.valueTextBox.Size = new System.Drawing.Size(99, 20);
92      this.valueTextBox.TabIndex = 3;
93      //
94      // editorGroupBox
95      //
96      this.editorGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
97                  | System.Windows.Forms.AnchorStyles.Left)
98                  | System.Windows.Forms.AnchorStyles.Right)));
99      this.editorGroupBox.Location = new System.Drawing.Point(0, 52);
100      this.editorGroupBox.Name = "editorGroupBox";
101      this.editorGroupBox.Size = new System.Drawing.Size(203, 102);
102      this.editorGroupBox.TabIndex = 5;
103      this.editorGroupBox.TabStop = false;
104      this.editorGroupBox.Text = "&Editor:";
105      //
106      // setVariableValueButton
107      //
108      this.setVariableValueButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
109      this.setVariableValueButton.Location = new System.Drawing.Point(155, 26);
110      this.setVariableValueButton.Name = "setVariableValueButton";
111      this.setVariableValueButton.Size = new System.Drawing.Size(45, 20);
112      this.setVariableValueButton.TabIndex = 4;
113      this.setVariableValueButton.Text = "Set...";
114      this.setVariableValueButton.UseVisualStyleBackColor = true;
115      this.setVariableValueButton.Click += new System.EventHandler(this.setVariableValueButton_Click);
116      //
117      // VariableView
118      //
119      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
120      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
121      this.Controls.Add(this.setVariableValueButton);
122      this.Controls.Add(this.editorGroupBox);
123      this.Controls.Add(this.valueTextBox);
124      this.Controls.Add(this.nameTextBox);
125      this.Controls.Add(this.valueLabel);
126      this.Controls.Add(this.nameLabel);
127      this.Name = "VariableView";
128      this.Size = new System.Drawing.Size(203, 154);
129      this.ResumeLayout(false);
130      this.PerformLayout();
131
132    }
133
134    #endregion
135
136    private System.Windows.Forms.Label nameLabel;
137    private System.Windows.Forms.TextBox nameTextBox;
138    private System.Windows.Forms.Label valueLabel;
139    private System.Windows.Forms.TextBox valueTextBox;
140    private System.Windows.Forms.GroupBox editorGroupBox;
141    private System.Windows.Forms.Button setVariableValueButton;
142  }
143}
Note: See TracBrowser for help on using the repository browser.