Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs @ 11170

Last change on this file since 11170 was 11170, checked in by ascheibe, 10 years ago

#2115 updated copyright year in stable branch

File size: 8.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Location = new System.Drawing.Point(69, 0);
53      this.nameTextBox.Size = new System.Drawing.Size(265, 20);
54      //
55      // infoLabel
56      //
57      this.infoLabel.Location = new System.Drawing.Point(340, 3);
58      //
59      // dataTypeLabel
60      //
61      this.dataTypeLabel.AutoSize = true;
62      this.dataTypeLabel.Location = new System.Drawing.Point(3, 29);
63      this.dataTypeLabel.Name = "dataTypeLabel";
64      this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
65      this.dataTypeLabel.TabIndex = 3;
66      this.dataTypeLabel.Text = "Data &Type:";
67      //
68      // dataTypeTextBox
69      //
70      this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
71                  | System.Windows.Forms.AnchorStyles.Right)));
72      this.dataTypeTextBox.Location = new System.Drawing.Point(69, 26);
73      this.dataTypeTextBox.Name = "dataTypeTextBox";
74      this.dataTypeTextBox.ReadOnly = true;
75      this.dataTypeTextBox.Size = new System.Drawing.Size(290, 20);
76      this.dataTypeTextBox.TabIndex = 4;
77      //
78      // valueGroupBox
79      //
80      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81                  | System.Windows.Forms.AnchorStyles.Left)
82                  | System.Windows.Forms.AnchorStyles.Right)));
83      this.valueGroupBox.Controls.Add(this.valuePanel);
84      this.valueGroupBox.Controls.Add(this.clearValueButton);
85      this.valueGroupBox.Controls.Add(this.setValueButton);
86      this.valueGroupBox.Location = new System.Drawing.Point(0, 52);
87      this.valueGroupBox.Name = "valueGroupBox";
88      this.valueGroupBox.Size = new System.Drawing.Size(359, 222);
89      this.valueGroupBox.TabIndex = 5;
90      this.valueGroupBox.TabStop = false;
91      this.valueGroupBox.Text = "Value";
92      //
93      // valuePanel
94      //
95      this.valuePanel.AllowDrop = true;
96      this.valuePanel.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.valuePanel.Controls.Add(this.viewHost);
100      this.valuePanel.Location = new System.Drawing.Point(6, 49);
101      this.valuePanel.Name = "valuePanel";
102      this.valuePanel.Size = new System.Drawing.Size(347, 167);
103      this.valuePanel.TabIndex = 2;
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      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
107      //
108      // viewHost
109      //
110      this.viewHost.Caption = "View";
111      this.viewHost.Content = null;
112      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
113      this.viewHost.Enabled = false;
114      this.viewHost.Location = new System.Drawing.Point(0, 0);
115      this.viewHost.Name = "viewHost";
116      this.viewHost.ReadOnly = false;
117      this.viewHost.Size = new System.Drawing.Size(347, 167);
118      this.viewHost.TabIndex = 0;
119      this.viewHost.ViewsLabelVisible = true;
120      this.viewHost.ViewType = null;
121      //
122      // clearValueButton
123      //
124      this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
125      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
126      this.clearValueButton.Name = "clearValueButton";
127      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
128      this.clearValueButton.TabIndex = 1;
129      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
130      this.clearValueButton.UseVisualStyleBackColor = true;
131      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
132      //
133      // setValueButton
134      //
135      this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
136      this.setValueButton.Location = new System.Drawing.Point(6, 19);
137      this.setValueButton.Name = "setValueButton";
138      this.setValueButton.Size = new System.Drawing.Size(24, 24);
139      this.setValueButton.TabIndex = 0;
140      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
141      this.setValueButton.UseVisualStyleBackColor = true;
142      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
143      //
144      // VariableView
145      //
146      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
147      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
148      this.Controls.Add(this.valueGroupBox);
149      this.Controls.Add(this.dataTypeLabel);
150      this.Controls.Add(this.dataTypeTextBox);
151      this.Name = "VariableView";
152      this.Size = new System.Drawing.Size(359, 274);
153      this.Controls.SetChildIndex(this.infoLabel, 0);
154      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
155      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
156      this.Controls.SetChildIndex(this.nameTextBox, 0);
157      this.Controls.SetChildIndex(this.nameLabel, 0);
158      this.Controls.SetChildIndex(this.valueGroupBox, 0);
159      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
160      this.valueGroupBox.ResumeLayout(false);
161      this.valuePanel.ResumeLayout(false);
162      this.ResumeLayout(false);
163      this.PerformLayout();
164
165    }
166
167    #endregion
168
169    protected System.Windows.Forms.Label dataTypeLabel;
170    protected System.Windows.Forms.TextBox dataTypeTextBox;
171    protected System.Windows.Forms.GroupBox valueGroupBox;
172    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
173    protected System.Windows.Forms.Button clearValueButton;
174    protected System.Windows.Forms.Button setValueButton;
175    protected System.Windows.Forms.Panel valuePanel;
176  }
177}
Note: See TracBrowser for help on using the repository browser.