Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/InputPortView.Designer.cs @ 11463

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

#2205: Worked on optimization networks

File size: 6.8 KB
RevLine 
[11412]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 InputPortView {
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() {
[11449]36      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputPortView));
[11438]37      this.outputPortGroupBox = new System.Windows.Forms.GroupBox();
[11449]38      this.setOutputPortButton = new System.Windows.Forms.Button();
39      this.clearOutputPortButton = new System.Windows.Forms.Button();
[11438]40      this.outputPortView = new HeuristicLab.Optimization.Networks.Views.PortView();
[11412]41      this.valueGroupBox.SuspendLayout();
42      this.valuePanel.SuspendLayout();
43      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[11438]44      this.outputPortGroupBox.SuspendLayout();
[11412]45      this.SuspendLayout();
46      //
47      // valueGroupBox
48      //
[11449]49      this.valueGroupBox.Location = new System.Drawing.Point(0, 82);
50      this.valueGroupBox.Size = new System.Drawing.Size(645, 435);
51      this.valueGroupBox.TabIndex = 4;
[11412]52      //
53      // valuePanel
54      //
[11449]55      this.valuePanel.Size = new System.Drawing.Size(633, 410);
[11412]56      //
57      // valueViewHost
58      //
[11449]59      this.valueViewHost.Size = new System.Drawing.Size(633, 410);
[11412]60      //
61      // nameTextBox
62      //
63      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
64      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[11438]65      this.nameTextBox.Location = new System.Drawing.Point(71, 0);
66      this.nameTextBox.Size = new System.Drawing.Size(549, 20);
[11412]67      //
[11438]68      // outputPortGroupBox
[11412]69      //
[11438]70      this.outputPortGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
71            | System.Windows.Forms.AnchorStyles.Right)));
[11449]72      this.outputPortGroupBox.Controls.Add(this.setOutputPortButton);
73      this.outputPortGroupBox.Controls.Add(this.clearOutputPortButton);
[11438]74      this.outputPortGroupBox.Controls.Add(this.outputPortView);
[11449]75      this.outputPortGroupBox.Location = new System.Drawing.Point(0, 26);
[11438]76      this.outputPortGroupBox.Name = "outputPortGroupBox";
[11449]77      this.outputPortGroupBox.Size = new System.Drawing.Size(645, 50);
78      this.outputPortGroupBox.TabIndex = 3;
[11438]79      this.outputPortGroupBox.TabStop = false;
80      this.outputPortGroupBox.Text = "&Output Port";
[11412]81      //
[11449]82      // setOutputPortButton
83      //
84      this.setOutputPortButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
85      this.setOutputPortButton.Location = new System.Drawing.Point(6, 19);
86      this.setOutputPortButton.Name = "setOutputPortButton";
87      this.setOutputPortButton.Size = new System.Drawing.Size(24, 24);
88      this.setOutputPortButton.TabIndex = 0;
89      this.setOutputPortButton.UseVisualStyleBackColor = true;
90      this.setOutputPortButton.Click += new System.EventHandler(this.setOutputPortButton_Click);
91      //
92      // clearOutputPortButton
93      //
94      this.clearOutputPortButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
95      this.clearOutputPortButton.Location = new System.Drawing.Point(36, 19);
96      this.clearOutputPortButton.Name = "clearOutputPortButton";
97      this.clearOutputPortButton.Size = new System.Drawing.Size(24, 24);
98      this.clearOutputPortButton.TabIndex = 1;
99      this.clearOutputPortButton.UseVisualStyleBackColor = true;
100      this.clearOutputPortButton.Click += new System.EventHandler(this.clearOutputPortButton_Click);
101      //
[11438]102      // outputPortView
[11412]103      //
[11449]104      this.outputPortView.AllowDrop = true;
105      this.outputPortView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
106            | System.Windows.Forms.AnchorStyles.Left)
107            | System.Windows.Forms.AnchorStyles.Right)));
108      this.outputPortView.Caption = "Output Port View";
[11438]109      this.outputPortView.Content = null;
[11449]110      this.outputPortView.Location = new System.Drawing.Point(66, 21);
[11438]111      this.outputPortView.Name = "outputPortView";
112      this.outputPortView.ReadOnly = true;
[11449]113      this.outputPortView.Size = new System.Drawing.Size(573, 23);
114      this.outputPortView.TabIndex = 2;
115      this.outputPortView.DragDrop += new System.Windows.Forms.DragEventHandler(this.outputPortView_DragDrop);
116      this.outputPortView.DragEnter += new System.Windows.Forms.DragEventHandler(this.outputPortView_DragEnterOver);
117      this.outputPortView.DragOver += new System.Windows.Forms.DragEventHandler(this.outputPortView_DragEnterOver);
[11412]118      //
119      // InputPortView
120      //
121      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[11438]122      this.Controls.Add(this.outputPortGroupBox);
[11412]123      this.Name = "InputPortView";
124      this.Controls.SetChildIndex(this.nameLabel, 0);
125      this.Controls.SetChildIndex(this.nameTextBox, 0);
126      this.Controls.SetChildIndex(this.infoLabel, 0);
127      this.Controls.SetChildIndex(this.valueGroupBox, 0);
[11438]128      this.Controls.SetChildIndex(this.outputPortGroupBox, 0);
[11412]129      this.valueGroupBox.ResumeLayout(false);
130      this.valuePanel.ResumeLayout(false);
131      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[11438]132      this.outputPortGroupBox.ResumeLayout(false);
[11412]133      this.ResumeLayout(false);
134      this.PerformLayout();
135
136    }
137
138    #endregion
139
[11438]140    protected System.Windows.Forms.GroupBox outputPortGroupBox;
141    protected PortView outputPortView;
[11449]142    protected System.Windows.Forms.Button clearOutputPortButton;
143    protected System.Windows.Forms.Button setOutputPortButton;
[11412]144
145
146
147
148
149  }
150}
Note: See TracBrowser for help on using the repository browser.