Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/ServiceParameterView.Designer.cs @ 11481

Last change on this file since 11481 was 11481, checked in by swagner, 9 years ago

#2205: Worked on optimization networks

File size: 9.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.Optimization.Networks.Views {
23  partial class ServiceParameterView {
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.valueGroupBox = new System.Windows.Forms.GroupBox();
37      this.clearValueButton = new System.Windows.Forms.Button();
38      this.setValueButton = new System.Windows.Forms.Button();
39      this.valuePanel = new System.Windows.Forms.Panel();
40      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
41      this.dataTypeLabel = new System.Windows.Forms.Label();
42      this.typeLabel = new System.Windows.Forms.Label();
43      this.dataTypeTextBox = new System.Windows.Forms.TextBox();
44      this.typeComboBox = new System.Windows.Forms.ComboBox();
45      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
46      this.valueGroupBox.SuspendLayout();
47      this.valuePanel.SuspendLayout();
48      this.SuspendLayout();
49      //
50      // nameTextBox
51      //
52      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
53      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
54      //
55      // valueGroupBox
56      //
57      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
58            | System.Windows.Forms.AnchorStyles.Left)
59            | System.Windows.Forms.AnchorStyles.Right)));
60      this.valueGroupBox.Controls.Add(this.clearValueButton);
61      this.valueGroupBox.Controls.Add(this.setValueButton);
62      this.valueGroupBox.Controls.Add(this.valuePanel);
63      this.valueGroupBox.Location = new System.Drawing.Point(0, 79);
64      this.valueGroupBox.Name = "valueGroupBox";
65      this.valueGroupBox.Size = new System.Drawing.Size(645, 438);
66      this.valueGroupBox.TabIndex = 7;
67      this.valueGroupBox.TabStop = false;
68      this.valueGroupBox.Text = "Value";
69      //
70      // clearValueButton
71      //
72      this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
73      this.clearValueButton.Location = new System.Drawing.Point(35, 19);
74      this.clearValueButton.Name = "clearValueButton";
75      this.clearValueButton.Size = new System.Drawing.Size(23, 23);
76      this.clearValueButton.TabIndex = 1;
77      this.clearValueButton.UseVisualStyleBackColor = true;
78      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
79      //
80      // setValueButton
81      //
82      this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
83      this.setValueButton.Location = new System.Drawing.Point(6, 19);
84      this.setValueButton.Name = "setValueButton";
85      this.setValueButton.Size = new System.Drawing.Size(23, 23);
86      this.setValueButton.TabIndex = 0;
87      this.setValueButton.UseVisualStyleBackColor = true;
88      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
89      //
90      // valuePanel
91      //
92      this.valuePanel.AllowDrop = true;
93      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94            | System.Windows.Forms.AnchorStyles.Left)
95            | System.Windows.Forms.AnchorStyles.Right)));
96      this.valuePanel.Controls.Add(this.valueViewHost);
97      this.valuePanel.Location = new System.Drawing.Point(6, 48);
98      this.valuePanel.Name = "valuePanel";
99      this.valuePanel.Size = new System.Drawing.Size(633, 384);
100      this.valuePanel.TabIndex = 0;
101      this.valuePanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragDrop);
102      this.valuePanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
103      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
104      //
105      // valueViewHost
106      //
107      this.valueViewHost.Caption = "View";
108      this.valueViewHost.Content = null;
109      this.valueViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
110      this.valueViewHost.Enabled = false;
111      this.valueViewHost.Location = new System.Drawing.Point(0, 0);
112      this.valueViewHost.Name = "valueViewHost";
113      this.valueViewHost.ReadOnly = false;
114      this.valueViewHost.Size = new System.Drawing.Size(633, 384);
115      this.valueViewHost.TabIndex = 0;
116      this.valueViewHost.ViewsLabelVisible = true;
117      this.valueViewHost.ViewType = null;
118      //
119      // dataTypeLabel
120      //
121      this.dataTypeLabel.AutoSize = true;
122      this.dataTypeLabel.Location = new System.Drawing.Point(3, 29);
123      this.dataTypeLabel.Name = "dataTypeLabel";
124      this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
125      this.dataTypeLabel.TabIndex = 3;
126      this.dataTypeLabel.Text = "&Data Type:";
127      //
128      // typeLabel
129      //
130      this.typeLabel.AutoSize = true;
131      this.typeLabel.Location = new System.Drawing.Point(3, 55);
132      this.typeLabel.Name = "typeLabel";
133      this.typeLabel.Size = new System.Drawing.Size(34, 13);
134      this.typeLabel.TabIndex = 5;
135      this.typeLabel.Text = "&Type:";
136      //
137      // dataTypeTextBox
138      //
139      this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
140            | System.Windows.Forms.AnchorStyles.Right)));
141      this.dataTypeTextBox.Location = new System.Drawing.Point(69, 26);
142      this.dataTypeTextBox.Name = "dataTypeTextBox";
143      this.dataTypeTextBox.ReadOnly = true;
144      this.dataTypeTextBox.Size = new System.Drawing.Size(551, 20);
145      this.dataTypeTextBox.TabIndex = 4;
146      //
147      // typeComboBox
148      //
149      this.typeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
150      this.typeComboBox.FormattingEnabled = true;
151      this.typeComboBox.Items.AddRange(new object[] {
152            "Input",
153            "Output"});
154      this.typeComboBox.Location = new System.Drawing.Point(69, 52);
155      this.typeComboBox.Name = "typeComboBox";
156      this.typeComboBox.Size = new System.Drawing.Size(92, 21);
157      this.typeComboBox.TabIndex = 6;
158      this.typeComboBox.SelectedIndexChanged += new System.EventHandler(this.typeComboBox_SelectedIndexChanged);
159      //
160      // ServiceParameterView
161      //
162      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
163      this.Controls.Add(this.typeComboBox);
164      this.Controls.Add(this.dataTypeTextBox);
165      this.Controls.Add(this.typeLabel);
166      this.Controls.Add(this.dataTypeLabel);
167      this.Controls.Add(this.valueGroupBox);
168      this.Name = "ServiceParameterView";
169      this.Controls.SetChildIndex(this.nameLabel, 0);
170      this.Controls.SetChildIndex(this.nameTextBox, 0);
171      this.Controls.SetChildIndex(this.infoLabel, 0);
172      this.Controls.SetChildIndex(this.valueGroupBox, 0);
173      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
174      this.Controls.SetChildIndex(this.typeLabel, 0);
175      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
176      this.Controls.SetChildIndex(this.typeComboBox, 0);
177      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
178      this.valueGroupBox.ResumeLayout(false);
179      this.valuePanel.ResumeLayout(false);
180      this.ResumeLayout(false);
181      this.PerformLayout();
182
183    }
184
185    #endregion
186
187    protected System.Windows.Forms.GroupBox valueGroupBox;
188    protected System.Windows.Forms.Panel valuePanel;
189    protected MainForm.WindowsForms.ViewHost valueViewHost;
190    protected System.Windows.Forms.Label dataTypeLabel;
191    protected System.Windows.Forms.Label typeLabel;
192    protected System.Windows.Forms.TextBox dataTypeTextBox;
193    protected System.Windows.Forms.ComboBox typeComboBox;
194    protected System.Windows.Forms.Button setValueButton;
195    protected System.Windows.Forms.Button clearValueButton;
196
197
198
199
200  }
201}
Note: See TracBrowser for help on using the repository browser.