Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2205: Continued working on programmable network items

File size: 4.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.Networks.Views {
23  partial class UserDefinedNetworkView {
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.codeTabPage = new System.Windows.Forms.TabPage();
48      this.programmableItemView = new HeuristicLab.Core.Views.ProgrammableItemView();
49      this.tabControl.SuspendLayout();
50      this.nodesTabPage.SuspendLayout();
51      this.portsTabPage.SuspendLayout();
52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.SuspendLayout();
54      //
55      // tabControl
56      //
57      this.tabControl.Controls.Add(this.codeTabPage);
58      this.tabControl.Controls.SetChildIndex(this.codeTabPage, 0);
59      this.tabControl.Controls.SetChildIndex(this.portsTabPage, 0);
60      this.tabControl.Controls.SetChildIndex(this.nodesTabPage, 0);
61      //
62      // nameTextBox
63      //
64      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
65      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
66      //
67      // codeTabPage
68      //
69      this.codeTabPage.Controls.Add(this.programmableItemView);
70      this.codeTabPage.Location = new System.Drawing.Point(4, 22);
71      this.codeTabPage.Name = "codeTabPage";
72      this.codeTabPage.Size = new System.Drawing.Size(637, 465);
73      this.codeTabPage.TabIndex = 2;
74      this.codeTabPage.Text = "Code";
75      this.codeTabPage.UseVisualStyleBackColor = true;
76      //
77      // programmableItemView
78      //
79      this.programmableItemView.Caption = "ProgrammableItem View";
80      this.programmableItemView.Content = null;
81      this.programmableItemView.Dock = System.Windows.Forms.DockStyle.Fill;
82      this.programmableItemView.Location = new System.Drawing.Point(3, 3);
83      this.programmableItemView.Name = "programmableItemView";
84      this.programmableItemView.ReadOnly = false;
85      this.programmableItemView.Size = new System.Drawing.Size(631, 459);
86      this.programmableItemView.TabIndex = 0;
87      //
88      // UserDefinedNetworkView
89      //
90      this.Name = "UserDefinedNetworkView";
91      this.tabControl.ResumeLayout(false);
92      this.nodesTabPage.ResumeLayout(false);
93      this.portsTabPage.ResumeLayout(false);
94      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
95      this.ResumeLayout(false);
96      this.PerformLayout();
97
98    }
99
100    #endregion
101
102    protected System.Windows.Forms.TabPage codeTabPage;
103    protected HeuristicLab.Core.Views.ProgrammableItemView programmableItemView;
104  }
105}
Note: See TracBrowser for help on using the repository browser.