Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Operators.Views/3.3/HookOperatorView.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: 5.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Operators.Views {
23  partial class HookOperatorView {
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) {
35        if (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component 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.portGroupBox = new System.Windows.Forms.GroupBox();
48      this.clearPortButton = new System.Windows.Forms.Button();
49      this.portView = new HeuristicLab.Core.Networks.Views.PortView();
50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      this.portGroupBox.SuspendLayout();
52      this.SuspendLayout();
53      //
54      // breakpointCheckBox
55      //
56      this.toolTip.SetToolTip(this.breakpointCheckBox, "Check if an engine should stop execution each time after this operator has been p" +
57        "rocessed.");
58      //
59      // parameterCollectionView
60      //
61      this.parameterCollectionView.Location = new System.Drawing.Point(0, 101);
62      this.parameterCollectionView.Size = new System.Drawing.Size(490, 252);
63      this.parameterCollectionView.TabIndex = 6;
64      //
65      // nameTextBox
66      //
67      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
68      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
69      //
70      // portGroupBox
71      //
72      this.portGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
73            | System.Windows.Forms.AnchorStyles.Right)));
74      this.portGroupBox.Controls.Add(this.clearPortButton);
75      this.portGroupBox.Controls.Add(this.portView);
76      this.portGroupBox.Location = new System.Drawing.Point(0, 46);
77      this.portGroupBox.Name = "portGroupBox";
78      this.portGroupBox.Size = new System.Drawing.Size(490, 49);
79      this.portGroupBox.TabIndex = 5;
80      this.portGroupBox.TabStop = false;
81      this.portGroupBox.Text = "Port:";
82      //
83      // clearPortButton
84      //
85      this.clearPortButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
86      this.clearPortButton.Location = new System.Drawing.Point(6, 19);
87      this.clearPortButton.Name = "clearPortButton";
88      this.clearPortButton.Size = new System.Drawing.Size(24, 24);
89      this.clearPortButton.TabIndex = 0;
90      this.clearPortButton.UseVisualStyleBackColor = true;
91      this.clearPortButton.Click += new System.EventHandler(this.clearPortButton_Click);
92      //
93      // portView
94      //
95      this.portView.AllowDrop = true;
96      this.portView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
97            | System.Windows.Forms.AnchorStyles.Left)
98            | System.Windows.Forms.AnchorStyles.Right)));
99      this.portView.Caption = "Port View";
100      this.portView.Content = null;
101      this.portView.Location = new System.Drawing.Point(36, 21);
102      this.portView.Name = "portView";
103      this.portView.ReadOnly = true;
104      this.portView.Size = new System.Drawing.Size(429, 24);
105      this.portView.TabIndex = 1;
106      this.portView.DragDrop += new System.Windows.Forms.DragEventHandler(this.portView_DragDrop);
107      this.portView.DragEnter += new System.Windows.Forms.DragEventHandler(this.portView_DragEnterOver);
108      this.portView.DragOver += new System.Windows.Forms.DragEventHandler(this.portView_DragEnterOver);
109      //
110      // HookOperatorView
111      //
112      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
113      this.Controls.Add(this.portGroupBox);
114      this.Name = "HookOperatorView";
115      this.Controls.SetChildIndex(this.breakpointCheckBox, 0);
116      this.Controls.SetChildIndex(this.breakpointLabel, 0);
117      this.Controls.SetChildIndex(this.infoLabel, 0);
118      this.Controls.SetChildIndex(this.nameTextBox, 0);
119      this.Controls.SetChildIndex(this.nameLabel, 0);
120      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
121      this.Controls.SetChildIndex(this.portGroupBox, 0);
122      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
123      this.portGroupBox.ResumeLayout(false);
124      this.ResumeLayout(false);
125      this.PerformLayout();
126
127    }
128
129    #endregion
130
131    protected System.Windows.Forms.GroupBox portGroupBox;
132    protected HeuristicLab.Core.Networks.Views.PortView portView;
133    protected System.Windows.Forms.Button clearPortButton;
134
135
136
137  }
138}
Note: See TracBrowser for help on using the repository browser.