Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/Core.Networks.Views/UserDefinedNodeView.Designer.cs @ 11564

Last change on this file since 11564 was 11564, checked in by swagner, 10 years ago

#2205: Continued working on programmable network items

File size: 6.2 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.Networks.Views {
23  partial class UserDefinedNodeView {
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 && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form 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.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
48      this.portsTabPage = new System.Windows.Forms.TabPage();
49      this.codeTabPage = new System.Windows.Forms.TabPage();
50      this.portCollectionView = new HeuristicLab.Core.Networks.Views.PortCollectionView();
51      this.programmableItemView = new HeuristicLab.Core.Views.ProgrammableItemView();
52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.tabControl.SuspendLayout();
54      this.portsTabPage.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // nameTextBox
58      //
59      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
60      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
61      //
62      // tabControl
63      //
64      this.tabControl.AllowDrop = true;
65      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
66            | System.Windows.Forms.AnchorStyles.Left)
67            | System.Windows.Forms.AnchorStyles.Right)));
68      this.tabControl.Controls.Add(this.portsTabPage);
69      this.tabControl.Controls.Add(this.codeTabPage);
70      this.tabControl.Location = new System.Drawing.Point(0, 26);
71      this.tabControl.Name = "tabControl";
72      this.tabControl.SelectedIndex = 0;
73      this.tabControl.Size = new System.Drawing.Size(645, 491);
74      this.tabControl.TabIndex = 3;
75      //
76      // portsTabPage
77      //
78      this.portsTabPage.Controls.Add(this.portCollectionView);
79      this.portsTabPage.Location = new System.Drawing.Point(4, 22);
80      this.portsTabPage.Name = "portsTabPage";
81      this.portsTabPage.Padding = new System.Windows.Forms.Padding(3);
82      this.portsTabPage.Size = new System.Drawing.Size(637, 465);
83      this.portsTabPage.TabIndex = 0;
84      this.portsTabPage.Text = "Ports";
85      this.portsTabPage.UseVisualStyleBackColor = true;
86      //
87      // codeTabPage
88      //
89      this.codeTabPage.Controls.Add(this.programmableItemView);
90      this.codeTabPage.Location = new System.Drawing.Point(4, 22);
91      this.codeTabPage.Name = "codeTabPage";
92      this.codeTabPage.Padding = new System.Windows.Forms.Padding(3);
93      this.codeTabPage.Size = new System.Drawing.Size(637, 465);
94      this.codeTabPage.TabIndex = 1;
95      this.codeTabPage.Text = "Code";
96      this.codeTabPage.UseVisualStyleBackColor = true;
97      //
98      // portCollectionView
99      //
100      this.portCollectionView.Caption = "PortCollection View";
101      this.portCollectionView.Content = null;
102      this.portCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
103      this.portCollectionView.Location = new System.Drawing.Point(3, 3);
104      this.portCollectionView.Name = "portCollectionView";
105      this.portCollectionView.ReadOnly = false;
106      this.portCollectionView.ShowDetails = true;
107      this.portCollectionView.Size = new System.Drawing.Size(631, 459);
108      this.portCollectionView.TabIndex = 0;
109      //
110      // programmableItemView
111      //
112      this.programmableItemView.Caption = "ProgrammableItem View";
113      this.programmableItemView.Content = null;
114      this.programmableItemView.Dock = System.Windows.Forms.DockStyle.Fill;
115      this.programmableItemView.Location = new System.Drawing.Point(3, 3);
116      this.programmableItemView.Name = "programmableItemView";
117      this.programmableItemView.ReadOnly = false;
118      this.programmableItemView.Size = new System.Drawing.Size(631, 459);
119      this.programmableItemView.TabIndex = 0;
120      //
121      // UserDefinedNodeView
122      //
123      this.Controls.Add(this.tabControl);
124      this.Name = "UserDefinedNodeView";
125      this.Controls.SetChildIndex(this.nameLabel, 0);
126      this.Controls.SetChildIndex(this.nameTextBox, 0);
127      this.Controls.SetChildIndex(this.infoLabel, 0);
128      this.Controls.SetChildIndex(this.tabControl, 0);
129      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
130      this.tabControl.ResumeLayout(false);
131      this.portsTabPage.ResumeLayout(false);
132      this.ResumeLayout(false);
133      this.PerformLayout();
134
135    }
136
137    #endregion
138
139    protected MainForm.WindowsForms.DragOverTabControl tabControl;
140    protected System.Windows.Forms.TabPage portsTabPage;
141    protected PortCollectionView portCollectionView;
142    protected System.Windows.Forms.TabPage codeTabPage;
143    protected HeuristicLab.Core.Views.ProgrammableItemView programmableItemView;
144
145  }
146}
Note: See TracBrowser for help on using the repository browser.