Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Programmable/UserDefinedNetworkView.Designer.cs @ 11577

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

#2205: Restructured solution and projects and switched all projects to .NET 4.5

File size: 4.9 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.Networks.Programmable.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.Scripting.Views.ProgrammableItemView();
49      this.initializeButton = new System.Windows.Forms.Button();
50      this.tabControl.SuspendLayout();
51      this.nodesTabPage.SuspendLayout();
52      this.portsTabPage.SuspendLayout();
53      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
54      this.codeTabPage.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // tabControl
58      //
59      this.tabControl.Controls.Add(this.codeTabPage);
60      this.tabControl.Controls.SetChildIndex(this.codeTabPage, 0);
61      this.tabControl.Controls.SetChildIndex(this.portsTabPage, 0);
62      this.tabControl.Controls.SetChildIndex(this.nodesTabPage, 0);
63      //
64      // nameTextBox
65      //
66      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
67      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
68      //
69      // codeTabPage
70      //
71      this.codeTabPage.Controls.Add(this.initializeButton);
72      this.codeTabPage.Controls.Add(this.programmableItemView);
73      this.codeTabPage.Location = new System.Drawing.Point(4, 22);
74      this.codeTabPage.Name = "codeTabPage";
75      this.codeTabPage.Size = new System.Drawing.Size(637, 465);
76      this.codeTabPage.TabIndex = 2;
77      this.codeTabPage.Text = "Code";
78      this.codeTabPage.UseVisualStyleBackColor = true;
79      //
80      // programmableItemView
81      //
82      this.programmableItemView.Caption = "ProgrammableItem View";
83      this.programmableItemView.Content = null;
84      this.programmableItemView.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.programmableItemView.Location = new System.Drawing.Point(0, 0);
86      this.programmableItemView.Name = "programmableItemView";
87      this.programmableItemView.ReadOnly = false;
88      this.programmableItemView.Size = new System.Drawing.Size(637, 465);
89      this.programmableItemView.TabIndex = 0;
90      //
91      // initializeButton
92      //
93      this.initializeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
94      this.initializeButton.Location = new System.Drawing.Point(33, 3);
95      this.initializeButton.Name = "initializeButton";
96      this.initializeButton.Size = new System.Drawing.Size(24, 24);
97      this.initializeButton.TabIndex = 1;
98      this.toolTip.SetToolTip(this.initializeButton, "Initialize");
99      this.initializeButton.UseVisualStyleBackColor = true;
100      this.initializeButton.Click += new System.EventHandler(this.initializeButton_Click);
101      //
102      // UserDefinedNetworkView
103      //
104      this.Name = "UserDefinedNetworkView";
105      this.tabControl.ResumeLayout(false);
106      this.nodesTabPage.ResumeLayout(false);
107      this.portsTabPage.ResumeLayout(false);
108      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
109      this.codeTabPage.ResumeLayout(false);
110      this.ResumeLayout(false);
111      this.PerformLayout();
112
113    }
114
115    #endregion
116
117    protected System.Windows.Forms.TabPage codeTabPage;
118    protected HeuristicLab.Scripting.Views.ProgrammableItemView programmableItemView;
119    protected System.Windows.Forms.Button initializeButton;
120  }
121}
Note: See TracBrowser for help on using the repository browser.