Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.0/sources/HeuristicLab.Grid/ClientForm.designer.cs @ 295

Last change on this file since 295 was 114, checked in by gkronber, 16 years ago

fixed #96 and #97

File size: 6.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Grid {
23  partial class ClientForm {
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 Windows Form 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.label1 = new System.Windows.Forms.Label();
48      this.stopButton = new System.Windows.Forms.Button();
49      this.startButton = new System.Windows.Forms.Button();
50      this.addressTextBox = new System.Windows.Forms.TextBox();
51      this.statusLabel = new System.Windows.Forms.Label();
52      this.statusTextBox = new System.Windows.Forms.TextBox();
53      this.label2 = new System.Windows.Forms.Label();
54      this.clientPort = new System.Windows.Forms.TextBox();
55      this.SuspendLayout();
56      //
57      // label1
58      //
59      this.label1.AutoSize = true;
60      this.label1.Location = new System.Drawing.Point(9, 9);
61      this.label1.Name = "label1";
62      this.label1.Size = new System.Drawing.Size(81, 13);
63      this.label1.TabIndex = 7;
64      this.label1.Text = "&Server address:";
65      //
66      // stopButton
67      //
68      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
69      this.stopButton.Enabled = false;
70      this.stopButton.Location = new System.Drawing.Point(99, 87);
71      this.stopButton.Name = "stopButton";
72      this.stopButton.Size = new System.Drawing.Size(75, 23);
73      this.stopButton.TabIndex = 6;
74      this.stopButton.Text = "St&op";
75      this.stopButton.UseVisualStyleBackColor = true;
76      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
77      //
78      // startButton
79      //
80      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
81      this.startButton.Location = new System.Drawing.Point(15, 87);
82      this.startButton.Name = "startButton";
83      this.startButton.Size = new System.Drawing.Size(75, 23);
84      this.startButton.TabIndex = 5;
85      this.startButton.Text = "St&art";
86      this.startButton.UseVisualStyleBackColor = true;
87      this.startButton.Click += new System.EventHandler(this.startButton_Click);
88      //
89      // addressTextBox
90      //
91      this.addressTextBox.Location = new System.Drawing.Point(96, 6);
92      this.addressTextBox.Name = "addressTextBox";
93      this.addressTextBox.Size = new System.Drawing.Size(222, 20);
94      this.addressTextBox.TabIndex = 4;
95      //
96      // statusLabel
97      //
98      this.statusLabel.AutoSize = true;
99      this.statusLabel.Location = new System.Drawing.Point(9, 56);
100      this.statusLabel.Name = "statusLabel";
101      this.statusLabel.Size = new System.Drawing.Size(67, 13);
102      this.statusLabel.TabIndex = 8;
103      this.statusLabel.Text = "&Client status:";
104      //
105      // statusTextBox
106      //
107      this.statusTextBox.Location = new System.Drawing.Point(96, 53);
108      this.statusTextBox.Name = "statusTextBox";
109      this.statusTextBox.ReadOnly = true;
110      this.statusTextBox.Size = new System.Drawing.Size(222, 20);
111      this.statusTextBox.TabIndex = 9;
112      //
113      // label2
114      //
115      this.label2.AutoSize = true;
116      this.label2.Location = new System.Drawing.Point(9, 32);
117      this.label2.Name = "label2";
118      this.label2.Size = new System.Drawing.Size(57, 13);
119      this.label2.TabIndex = 10;
120      this.label2.Text = "Client port:";
121      //
122      // clientPort
123      //
124      this.clientPort.Location = new System.Drawing.Point(96, 29);
125      this.clientPort.Name = "clientPort";
126      this.clientPort.Size = new System.Drawing.Size(222, 20);
127      this.clientPort.TabIndex = 11;
128      this.clientPort.Text = "8002";
129      //
130      // ClientForm
131      //
132      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
133      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
134      this.ClientSize = new System.Drawing.Size(330, 122);
135      this.Controls.Add(this.clientPort);
136      this.Controls.Add(this.label2);
137      this.Controls.Add(this.statusTextBox);
138      this.Controls.Add(this.statusLabel);
139      this.Controls.Add(this.label1);
140      this.Controls.Add(this.stopButton);
141      this.Controls.Add(this.startButton);
142      this.Controls.Add(this.addressTextBox);
143      this.Name = "ClientForm";
144      this.Text = "Grid Client";
145      this.ResumeLayout(false);
146      this.PerformLayout();
147
148    }
149
150    #endregion
151
152    private System.Windows.Forms.Label label1;
153    private System.Windows.Forms.Button stopButton;
154    private System.Windows.Forms.Button startButton;
155    private System.Windows.Forms.TextBox addressTextBox;
156    private System.Windows.Forms.Label statusLabel;
157    private System.Windows.Forms.TextBox statusTextBox;
158    private System.Windows.Forms.Label label2;
159    private System.Windows.Forms.TextBox clientPort;
160  }
161}
Note: See TracBrowser for help on using the repository browser.