Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.ExternalEvaluation.Views/3.4/EvaluationTCPChannelView.Designer.cs @ 13321

Last change on this file since 13321 was 12009, checked in by ascheibe, 9 years ago

#2212 updated copyright year

File size: 6.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Problems.ExternalEvaluation.Views {
23  partial class EvaluationTCPChannelView {
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 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.ipAddressLabel = new System.Windows.Forms.Label();
48      this.portLabel = new System.Windows.Forms.Label();
49      this.ipAddressTextBox = new System.Windows.Forms.TextBox();
50      this.portTextBox = new System.Windows.Forms.TextBox();
51      this.connectButton = new System.Windows.Forms.Button();
52      this.disconnectButton = new System.Windows.Forms.Button();
53      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
54      this.SuspendLayout();
55      //
56      // nameTextBox
57      //
58      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
59      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
60      this.nameTextBox.Location = new System.Drawing.Point(70, 0);
61      this.nameTextBox.Size = new System.Drawing.Size(256, 20);
62      //
63      // ipAddressLabel
64      //
65      this.ipAddressLabel.AutoSize = true;
66      this.ipAddressLabel.Location = new System.Drawing.Point(3, 29);
67      this.ipAddressLabel.Name = "ipAddressLabel";
68      this.ipAddressLabel.Size = new System.Drawing.Size(61, 13);
69      this.ipAddressLabel.TabIndex = 3;
70      this.ipAddressLabel.Text = "IP Address:";
71      //
72      // portLabel
73      //
74      this.portLabel.AutoSize = true;
75      this.portLabel.Location = new System.Drawing.Point(3, 55);
76      this.portLabel.Name = "portLabel";
77      this.portLabel.Size = new System.Drawing.Size(29, 13);
78      this.portLabel.TabIndex = 5;
79      this.portLabel.Text = "Port:";
80      //
81      // ipAddressTextBox
82      //
83      this.ipAddressTextBox.Location = new System.Drawing.Point(70, 26);
84      this.ipAddressTextBox.Name = "ipAddressTextBox";
85      this.ipAddressTextBox.Size = new System.Drawing.Size(281, 20);
86      this.ipAddressTextBox.TabIndex = 4;
87      this.ipAddressTextBox.Text = "127.0.0.1";
88      this.ipAddressTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.ipAddressTextBox_Validating);
89      //
90      // portTextBox
91      //
92      this.portTextBox.Location = new System.Drawing.Point(70, 52);
93      this.portTextBox.Name = "portTextBox";
94      this.portTextBox.Size = new System.Drawing.Size(281, 20);
95      this.portTextBox.TabIndex = 6;
96      this.portTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.portTextBox_Validating);
97      //
98      // connectButton
99      //
100      this.connectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
101      this.connectButton.Location = new System.Drawing.Point(70, 78);
102      this.connectButton.Name = "connectButton";
103      this.connectButton.Size = new System.Drawing.Size(26, 23);
104      this.connectButton.TabIndex = 7;
105      this.connectButton.UseVisualStyleBackColor = true;
106      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
107      //
108      // disconnectButton
109      //
110      this.disconnectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
111      this.disconnectButton.Location = new System.Drawing.Point(102, 78);
112      this.disconnectButton.Name = "disconnectButton";
113      this.disconnectButton.Size = new System.Drawing.Size(26, 23);
114      this.disconnectButton.TabIndex = 8;
115      this.disconnectButton.UseVisualStyleBackColor = true;
116      this.disconnectButton.Click += new System.EventHandler(this.disconnectButton_Click);
117      //
118      // EvaluationTCPChannelView
119      //
120      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
121      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
122      this.Controls.Add(this.ipAddressLabel);
123      this.Controls.Add(this.portTextBox);
124      this.Controls.Add(this.portLabel);
125      this.Controls.Add(this.connectButton);
126      this.Controls.Add(this.ipAddressTextBox);
127      this.Controls.Add(this.disconnectButton);
128      this.Name = "EvaluationTCPChannelView";
129      this.Size = new System.Drawing.Size(351, 105);
130      this.Controls.SetChildIndex(this.disconnectButton, 0);
131      this.Controls.SetChildIndex(this.infoLabel, 0);
132      this.Controls.SetChildIndex(this.ipAddressTextBox, 0);
133      this.Controls.SetChildIndex(this.connectButton, 0);
134      this.Controls.SetChildIndex(this.portLabel, 0);
135      this.Controls.SetChildIndex(this.portTextBox, 0);
136      this.Controls.SetChildIndex(this.ipAddressLabel, 0);
137      this.Controls.SetChildIndex(this.nameLabel, 0);
138      this.Controls.SetChildIndex(this.nameTextBox, 0);
139      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
140      this.ResumeLayout(false);
141      this.PerformLayout();
142
143    }
144
145    #endregion
146
147    private System.Windows.Forms.Label ipAddressLabel;
148    private System.Windows.Forms.Label portLabel;
149    private System.Windows.Forms.TextBox ipAddressTextBox;
150    private System.Windows.Forms.TextBox portTextBox;
151    private System.Windows.Forms.Button connectButton;
152    private System.Windows.Forms.Button disconnectButton;
153  }
154}
Note: See TracBrowser for help on using the repository browser.