Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.3/HeuristicLab.Problems.ExternalEvaluation.Views/3.3/EvaluationTCPChannelView.Designer.cs @ 14093

Last change on this file since 14093 was 5287, checked in by abeham, 13 years ago

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
File size: 5.7 KB
Line 
1namespace HeuristicLab.Problems.ExternalEvaluation.Views {
2  partial class EvaluationTCPChannelView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.ipAddressLabel = new System.Windows.Forms.Label();
27      this.portLabel = new System.Windows.Forms.Label();
28      this.ipAddressTextBox = new System.Windows.Forms.TextBox();
29      this.portTextBox = new System.Windows.Forms.TextBox();
30      this.connectButton = new System.Windows.Forms.Button();
31      this.disconnectButton = new System.Windows.Forms.Button();
32      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
33      this.SuspendLayout();
34      //
35      // nameTextBox
36      //
37      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
38      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
39      //
40      // ipAddressLabel
41      //
42      this.ipAddressLabel.AutoSize = true;
43      this.ipAddressLabel.Location = new System.Drawing.Point(3, 61);
44      this.ipAddressLabel.Name = "ipAddressLabel";
45      this.ipAddressLabel.Size = new System.Drawing.Size(61, 13);
46      this.ipAddressLabel.TabIndex = 4;
47      this.ipAddressLabel.Text = "IP Address:";
48      //
49      // portLabel
50      //
51      this.portLabel.AutoSize = true;
52      this.portLabel.Location = new System.Drawing.Point(3, 87);
53      this.portLabel.Name = "portLabel";
54      this.portLabel.Size = new System.Drawing.Size(29, 13);
55      this.portLabel.TabIndex = 5;
56      this.portLabel.Text = "Port:";
57      //
58      // ipAddressTextBox
59      //
60      this.ipAddressTextBox.Location = new System.Drawing.Point(72, 58);
61      this.ipAddressTextBox.Name = "ipAddressTextBox";
62      this.ipAddressTextBox.Size = new System.Drawing.Size(100, 20);
63      this.ipAddressTextBox.TabIndex = 6;
64      this.ipAddressTextBox.Text = "127.0.0.1";
65      this.ipAddressTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.ipAddressTextBox_Validating);
66      //
67      // portTextBox
68      //
69      this.portTextBox.Location = new System.Drawing.Point(72, 84);
70      this.portTextBox.Name = "portTextBox";
71      this.portTextBox.Size = new System.Drawing.Size(100, 20);
72      this.portTextBox.TabIndex = 7;
73      this.portTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.portTextBox_Validating);
74      //
75      // connectButton
76      //
77      this.connectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
78      this.connectButton.Location = new System.Drawing.Point(72, 110);
79      this.connectButton.Name = "connectButton";
80      this.connectButton.Size = new System.Drawing.Size(26, 23);
81      this.connectButton.TabIndex = 8;
82      this.connectButton.UseVisualStyleBackColor = true;
83      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
84      //
85      // disconnectButton
86      //
87      this.disconnectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
88      this.disconnectButton.Location = new System.Drawing.Point(104, 110);
89      this.disconnectButton.Name = "disconnectButton";
90      this.disconnectButton.Size = new System.Drawing.Size(26, 23);
91      this.disconnectButton.TabIndex = 9;
92      this.disconnectButton.UseVisualStyleBackColor = true;
93      this.disconnectButton.Click += new System.EventHandler(this.disconnectButton_Click);
94      //
95      // EvaluationTCPChannelView
96      //
97      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
98      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
99      this.Controls.Add(this.ipAddressLabel);
100      this.Controls.Add(this.ipAddressTextBox);
101      this.Controls.Add(this.portTextBox);
102      this.Controls.Add(this.portLabel);
103      this.Controls.Add(this.connectButton);
104      this.Controls.Add(this.disconnectButton);
105      this.Name = "EvaluationTCPChannelView";
106      this.Size = new System.Drawing.Size(351, 139);
107      this.Controls.SetChildIndex(this.disconnectButton, 0);
108      this.Controls.SetChildIndex(this.connectButton, 0);
109      this.Controls.SetChildIndex(this.portLabel, 0);
110      this.Controls.SetChildIndex(this.portTextBox, 0);
111      this.Controls.SetChildIndex(this.ipAddressTextBox, 0);
112      this.Controls.SetChildIndex(this.ipAddressLabel, 0);
113      this.Controls.SetChildIndex(this.nameLabel, 0);
114      this.Controls.SetChildIndex(this.descriptionLabel, 0);
115      this.Controls.SetChildIndex(this.nameTextBox, 0);
116      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
117      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
118      this.ResumeLayout(false);
119      this.PerformLayout();
120
121    }
122
123    #endregion
124
125    private System.Windows.Forms.Label ipAddressLabel;
126    private System.Windows.Forms.Label portLabel;
127    private System.Windows.Forms.TextBox ipAddressTextBox;
128    private System.Windows.Forms.TextBox portTextBox;
129    private System.Windows.Forms.Button connectButton;
130    private System.Windows.Forms.Button disconnectButton;
131  }
132}
Note: See TracBrowser for help on using the repository browser.