Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/AlgorithmNodeView.Designer.cs @ 11501

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

#2205: Worked on optimization networks

File size: 9.0 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 AlgorithmNodeView {
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.portCollectionView = new HeuristicLab.Optimization.Networks.Views.PortCollectionView();
37      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
38      this.portsTabPage = new System.Windows.Forms.TabPage();
39      this.algorithmTabPage = new System.Windows.Forms.TabPage();
40      this.algorithmPanel = new System.Windows.Forms.Panel();
41      this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
42      this.clearAlgorithmButton = new System.Windows.Forms.Button();
43      this.setAlgorithmButton = new System.Windows.Forms.Button();
44      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
45      this.tabControl.SuspendLayout();
46      this.portsTabPage.SuspendLayout();
47      this.algorithmTabPage.SuspendLayout();
48      this.algorithmPanel.SuspendLayout();
49      this.SuspendLayout();
50      //
51      // nameTextBox
52      //
53      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
54      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
55      //
56      // portCollectionView
57      //
58      this.portCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59            | System.Windows.Forms.AnchorStyles.Left)
60            | System.Windows.Forms.AnchorStyles.Right)));
61      this.portCollectionView.Caption = "PortCollection View";
62      this.portCollectionView.Content = null;
63      this.portCollectionView.Location = new System.Drawing.Point(6, 6);
64      this.portCollectionView.Name = "portCollectionView";
65      this.portCollectionView.ReadOnly = false;
66      this.portCollectionView.ShowDetails = true;
67      this.portCollectionView.Size = new System.Drawing.Size(625, 453);
68      this.portCollectionView.TabIndex = 0;
69      //
70      // tabControl
71      //
72      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
73            | System.Windows.Forms.AnchorStyles.Left)
74            | System.Windows.Forms.AnchorStyles.Right)));
75      this.tabControl.Controls.Add(this.portsTabPage);
76      this.tabControl.Controls.Add(this.algorithmTabPage);
77      this.tabControl.Location = new System.Drawing.Point(0, 26);
78      this.tabControl.Name = "tabControl";
79      this.tabControl.SelectedIndex = 0;
80      this.tabControl.Size = new System.Drawing.Size(645, 491);
81      this.tabControl.TabIndex = 3;
82      //
83      // portsTabPage
84      //
85      this.portsTabPage.Controls.Add(this.portCollectionView);
86      this.portsTabPage.Location = new System.Drawing.Point(4, 22);
87      this.portsTabPage.Name = "portsTabPage";
88      this.portsTabPage.Padding = new System.Windows.Forms.Padding(3);
89      this.portsTabPage.Size = new System.Drawing.Size(637, 465);
90      this.portsTabPage.TabIndex = 0;
91      this.portsTabPage.Text = "Ports";
92      this.portsTabPage.UseVisualStyleBackColor = true;
93      //
94      // algorithmTabPage
95      //
96      this.algorithmTabPage.Controls.Add(this.algorithmPanel);
97      this.algorithmTabPage.Controls.Add(this.clearAlgorithmButton);
98      this.algorithmTabPage.Controls.Add(this.setAlgorithmButton);
99      this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
100      this.algorithmTabPage.Name = "algorithmTabPage";
101      this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
102      this.algorithmTabPage.Size = new System.Drawing.Size(637, 465);
103      this.algorithmTabPage.TabIndex = 1;
104      this.algorithmTabPage.Text = "Algorithm";
105      this.algorithmTabPage.UseVisualStyleBackColor = true;
106      //
107      // algorithmPanel
108      //
109      this.algorithmPanel.AllowDrop = true;
110      this.algorithmPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
111            | System.Windows.Forms.AnchorStyles.Left)
112            | System.Windows.Forms.AnchorStyles.Right)));
113      this.algorithmPanel.Controls.Add(this.algorithmViewHost);
114      this.algorithmPanel.Location = new System.Drawing.Point(6, 36);
115      this.algorithmPanel.Name = "algorithmPanel";
116      this.algorithmPanel.Size = new System.Drawing.Size(625, 423);
117      this.algorithmPanel.TabIndex = 2;
118      this.algorithmPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragDrop);
119      this.algorithmPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
120      this.algorithmPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
121      //
122      // algorithmViewHost
123      //
124      this.algorithmViewHost.Caption = "View";
125      this.algorithmViewHost.Content = null;
126      this.algorithmViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
127      this.algorithmViewHost.Enabled = false;
128      this.algorithmViewHost.Location = new System.Drawing.Point(0, 0);
129      this.algorithmViewHost.Name = "algorithmViewHost";
130      this.algorithmViewHost.ReadOnly = false;
131      this.algorithmViewHost.Size = new System.Drawing.Size(625, 423);
132      this.algorithmViewHost.TabIndex = 0;
133      this.algorithmViewHost.ViewsLabelVisible = true;
134      this.algorithmViewHost.ViewType = null;
135      //
136      // clearAlgorithmButton
137      //
138      this.clearAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
139      this.clearAlgorithmButton.Location = new System.Drawing.Point(36, 6);
140      this.clearAlgorithmButton.Name = "clearAlgorithmButton";
141      this.clearAlgorithmButton.Size = new System.Drawing.Size(24, 24);
142      this.clearAlgorithmButton.TabIndex = 1;
143      this.clearAlgorithmButton.UseVisualStyleBackColor = true;
144      this.clearAlgorithmButton.Click += new System.EventHandler(this.clearAlgorithmButton_Click);
145      //
146      // setAlgorithmButton
147      //
148      this.setAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
149      this.setAlgorithmButton.Location = new System.Drawing.Point(6, 6);
150      this.setAlgorithmButton.Name = "setAlgorithmButton";
151      this.setAlgorithmButton.Size = new System.Drawing.Size(24, 24);
152      this.setAlgorithmButton.TabIndex = 0;
153      this.setAlgorithmButton.UseVisualStyleBackColor = true;
154      this.setAlgorithmButton.Click += new System.EventHandler(this.setAlgorithmButton_Click);
155      //
156      // AlgorithmNodeView
157      //
158      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
159      this.Controls.Add(this.tabControl);
160      this.Name = "AlgorithmNodeView";
161      this.Controls.SetChildIndex(this.nameLabel, 0);
162      this.Controls.SetChildIndex(this.nameTextBox, 0);
163      this.Controls.SetChildIndex(this.infoLabel, 0);
164      this.Controls.SetChildIndex(this.tabControl, 0);
165      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
166      this.tabControl.ResumeLayout(false);
167      this.portsTabPage.ResumeLayout(false);
168      this.algorithmTabPage.ResumeLayout(false);
169      this.algorithmPanel.ResumeLayout(false);
170      this.ResumeLayout(false);
171      this.PerformLayout();
172
173    }
174
175    #endregion
176
177    protected PortCollectionView portCollectionView;
178    protected System.Windows.Forms.TabPage portsTabPage;
179    protected System.Windows.Forms.Button setAlgorithmButton;
180    protected System.Windows.Forms.Button clearAlgorithmButton;
181    protected System.Windows.Forms.Panel algorithmPanel;
182    protected HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
183    protected System.Windows.Forms.TabPage algorithmTabPage;
184    protected MainForm.WindowsForms.ViewHost algorithmViewHost;
185
186
187  }
188}
Note: See TracBrowser for help on using the repository browser.