Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation.Views/3.3/EvaluationTCPChannelView.Designer.cs @ 5832

Last change on this file since 5832 was 5832, checked in by swagner, 13 years ago

Moved description from textbox to icon in NamedItemView and adapted all derived views (#1416)

File size: 5.8 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      this.nameTextBox.Location = new System.Drawing.Point(70, 0);
40      this.nameTextBox.Size = new System.Drawing.Size(256, 20);
41      //
42      // ipAddressLabel
43      //
44      this.ipAddressLabel.AutoSize = true;
45      this.ipAddressLabel.Location = new System.Drawing.Point(3, 29);
46      this.ipAddressLabel.Name = "ipAddressLabel";
47      this.ipAddressLabel.Size = new System.Drawing.Size(61, 13);
48      this.ipAddressLabel.TabIndex = 3;
49      this.ipAddressLabel.Text = "IP Address:";
50      //
51      // portLabel
52      //
53      this.portLabel.AutoSize = true;
54      this.portLabel.Location = new System.Drawing.Point(3, 55);
55      this.portLabel.Name = "portLabel";
56      this.portLabel.Size = new System.Drawing.Size(29, 13);
57      this.portLabel.TabIndex = 5;
58      this.portLabel.Text = "Port:";
59      //
60      // ipAddressTextBox
61      //
62      this.ipAddressTextBox.Location = new System.Drawing.Point(70, 26);
63      this.ipAddressTextBox.Name = "ipAddressTextBox";
64      this.ipAddressTextBox.Size = new System.Drawing.Size(281, 20);
65      this.ipAddressTextBox.TabIndex = 4;
66      this.ipAddressTextBox.Text = "127.0.0.1";
67      this.ipAddressTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.ipAddressTextBox_Validating);
68      //
69      // portTextBox
70      //
71      this.portTextBox.Location = new System.Drawing.Point(70, 52);
72      this.portTextBox.Name = "portTextBox";
73      this.portTextBox.Size = new System.Drawing.Size(281, 20);
74      this.portTextBox.TabIndex = 6;
75      this.portTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.portTextBox_Validating);
76      //
77      // connectButton
78      //
79      this.connectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
80      this.connectButton.Location = new System.Drawing.Point(70, 78);
81      this.connectButton.Name = "connectButton";
82      this.connectButton.Size = new System.Drawing.Size(26, 23);
83      this.connectButton.TabIndex = 7;
84      this.connectButton.UseVisualStyleBackColor = true;
85      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
86      //
87      // disconnectButton
88      //
89      this.disconnectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
90      this.disconnectButton.Location = new System.Drawing.Point(102, 78);
91      this.disconnectButton.Name = "disconnectButton";
92      this.disconnectButton.Size = new System.Drawing.Size(26, 23);
93      this.disconnectButton.TabIndex = 8;
94      this.disconnectButton.UseVisualStyleBackColor = true;
95      this.disconnectButton.Click += new System.EventHandler(this.disconnectButton_Click);
96      //
97      // EvaluationTCPChannelView
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.Controls.Add(this.ipAddressLabel);
102      this.Controls.Add(this.portTextBox);
103      this.Controls.Add(this.portLabel);
104      this.Controls.Add(this.connectButton);
105      this.Controls.Add(this.ipAddressTextBox);
106      this.Controls.Add(this.disconnectButton);
107      this.Name = "EvaluationTCPChannelView";
108      this.Size = new System.Drawing.Size(351, 105);
109      this.Controls.SetChildIndex(this.disconnectButton, 0);
110      this.Controls.SetChildIndex(this.infoLabel, 0);
111      this.Controls.SetChildIndex(this.ipAddressTextBox, 0);
112      this.Controls.SetChildIndex(this.connectButton, 0);
113      this.Controls.SetChildIndex(this.portLabel, 0);
114      this.Controls.SetChildIndex(this.portTextBox, 0);
115      this.Controls.SetChildIndex(this.ipAddressLabel, 0);
116      this.Controls.SetChildIndex(this.nameLabel, 0);
117      this.Controls.SetChildIndex(this.nameTextBox, 0);
118      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
119      this.ResumeLayout(false);
120      this.PerformLayout();
121
122    }
123
124    #endregion
125
126    private System.Windows.Forms.Label ipAddressLabel;
127    private System.Windows.Forms.Label portLabel;
128    private System.Windows.Forms.TextBox ipAddressTextBox;
129    private System.Windows.Forms.TextBox portTextBox;
130    private System.Windows.Forms.Button connectButton;
131    private System.Windows.Forms.Button disconnectButton;
132  }
133}
Note: See TracBrowser for help on using the repository browser.