Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs @ 5717

Last change on this file since 5717 was 5445, checked in by swagner, 13 years ago

Updated year of copyrights (#1406)

File size: 8.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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 VariableView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Component Designer generated code
30
31    /// <summary>
32    /// Required method for Designer support - do not modify
33    /// the contents of this method with the code editor.
34    /// </summary>
35    private void InitializeComponent() {
36      this.dataTypeLabel = new System.Windows.Forms.Label();
37      this.dataTypeTextBox = new System.Windows.Forms.TextBox();
38      this.valueGroupBox = new System.Windows.Forms.GroupBox();
39      this.valuePanel = new System.Windows.Forms.Panel();
40      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
41      this.clearValueButton = new System.Windows.Forms.Button();
42      this.setValueButton = new System.Windows.Forms.Button();
43      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
44      this.valueGroupBox.SuspendLayout();
45      this.valuePanel.SuspendLayout();
46      this.SuspendLayout();
47      //
48      // nameTextBox
49      //
50      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
51      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
52      this.nameTextBox.Size = new System.Drawing.Size(287, 20);
53      //
54      // descriptionTextBox
55      //
56      this.descriptionTextBox.Size = new System.Drawing.Size(287, 20);
57      //
58      // dataTypeLabel
59      //
60      this.dataTypeLabel.AutoSize = true;
61      this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
62      this.dataTypeLabel.Name = "dataTypeLabel";
63      this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
64      this.dataTypeLabel.TabIndex = 4;
65      this.dataTypeLabel.Text = "Data &Type:";
66      //
67      // dataTypeTextBox
68      //
69      this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
70                  | System.Windows.Forms.AnchorStyles.Right)));
71      this.dataTypeTextBox.Location = new System.Drawing.Point(72, 52);
72      this.dataTypeTextBox.Name = "dataTypeTextBox";
73      this.dataTypeTextBox.ReadOnly = true;
74      this.dataTypeTextBox.Size = new System.Drawing.Size(287, 20);
75      this.dataTypeTextBox.TabIndex = 5;
76      //
77      // valueGroupBox
78      //
79      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80                  | System.Windows.Forms.AnchorStyles.Left)
81                  | System.Windows.Forms.AnchorStyles.Right)));
82      this.valueGroupBox.Controls.Add(this.valuePanel);
83      this.valueGroupBox.Controls.Add(this.clearValueButton);
84      this.valueGroupBox.Controls.Add(this.setValueButton);
85      this.valueGroupBox.Location = new System.Drawing.Point(0, 78);
86      this.valueGroupBox.Name = "valueGroupBox";
87      this.valueGroupBox.Size = new System.Drawing.Size(359, 196);
88      this.valueGroupBox.TabIndex = 7;
89      this.valueGroupBox.TabStop = false;
90      this.valueGroupBox.Text = "Value";
91      //
92      // valuePanel
93      //
94      this.valuePanel.AllowDrop = true;
95      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
96                  | System.Windows.Forms.AnchorStyles.Left)
97                  | System.Windows.Forms.AnchorStyles.Right)));
98      this.valuePanel.Controls.Add(this.viewHost);
99      this.valuePanel.Location = new System.Drawing.Point(6, 49);
100      this.valuePanel.Name = "valuePanel";
101      this.valuePanel.Size = new System.Drawing.Size(347, 141);
102      this.valuePanel.TabIndex = 2;
103      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
104      this.valuePanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragDrop);
105      this.valuePanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
106      //
107      // viewHost
108      //
109      this.viewHost.Content = null;
110      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
111      this.viewHost.Location = new System.Drawing.Point(0, 0);
112      this.viewHost.Name = "viewHost";
113      this.viewHost.Size = new System.Drawing.Size(347, 141);
114      this.viewHost.TabIndex = 0;
115      this.viewHost.ViewType = null;
116      //
117      // clearValueButton
118      //
119      this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
120      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
121      this.clearValueButton.Name = "clearValueButton";
122      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
123      this.clearValueButton.TabIndex = 1;
124      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
125      this.clearValueButton.UseVisualStyleBackColor = true;
126      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
127      //
128      // setValueButton
129      //
130      this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
131      this.setValueButton.Location = new System.Drawing.Point(6, 19);
132      this.setValueButton.Name = "setValueButton";
133      this.setValueButton.Size = new System.Drawing.Size(24, 24);
134      this.setValueButton.TabIndex = 1;
135      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
136      this.setValueButton.UseVisualStyleBackColor = true;
137      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
138      //
139      // VariableView
140      //
141      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
142      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
143      this.Controls.Add(this.valueGroupBox);
144      this.Controls.Add(this.dataTypeLabel);
145      this.Controls.Add(this.dataTypeTextBox);
146      this.Name = "VariableView";
147      this.Size = new System.Drawing.Size(359, 274);
148      this.Controls.SetChildIndex(this.descriptionLabel, 0);
149      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
150      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
151      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
152      this.Controls.SetChildIndex(this.nameTextBox, 0);
153      this.Controls.SetChildIndex(this.nameLabel, 0);
154      this.Controls.SetChildIndex(this.valueGroupBox, 0);
155      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
156      this.valueGroupBox.ResumeLayout(false);
157      this.valuePanel.ResumeLayout(false);
158      this.ResumeLayout(false);
159      this.PerformLayout();
160
161    }
162
163    #endregion
164
165    protected System.Windows.Forms.Label dataTypeLabel;
166    protected System.Windows.Forms.TextBox dataTypeTextBox;
167    protected System.Windows.Forms.GroupBox valueGroupBox;
168    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
169    protected System.Windows.Forms.Button clearValueButton;
170    protected System.Windows.Forms.Button setValueButton;
171    protected System.Windows.Forms.Panel valuePanel;
172  }
173}
Note: See TracBrowser for help on using the repository browser.