Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/ClientForm.designer.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 5.4 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.SuspendLayout();
54      //
55      // label1
56      //
57      this.label1.AutoSize = true;
58      this.label1.Location = new System.Drawing.Point(9, 9);
59      this.label1.Name = "label1";
60      this.label1.Size = new System.Drawing.Size(81, 13);
61      this.label1.TabIndex = 7;
62      this.label1.Text = "&Server address:";
63      //
64      // stopButton
65      //
66      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
67      this.stopButton.Enabled = false;
68      this.stopButton.Location = new System.Drawing.Point(99, 74);
69      this.stopButton.Name = "stopButton";
70      this.stopButton.Size = new System.Drawing.Size(75, 23);
71      this.stopButton.TabIndex = 6;
72      this.stopButton.Text = "St&op";
73      this.stopButton.UseVisualStyleBackColor = true;
74      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
75      //
76      // startButton
77      //
78      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
79      this.startButton.Location = new System.Drawing.Point(15, 74);
80      this.startButton.Name = "startButton";
81      this.startButton.Size = new System.Drawing.Size(75, 23);
82      this.startButton.TabIndex = 5;
83      this.startButton.Text = "St&art";
84      this.startButton.UseVisualStyleBackColor = true;
85      this.startButton.Click += new System.EventHandler(this.startButton_Click);
86      //
87      // addressTextBox
88      //
89      this.addressTextBox.Location = new System.Drawing.Point(96, 6);
90      this.addressTextBox.Name = "addressTextBox";
91      this.addressTextBox.Size = new System.Drawing.Size(222, 20);
92      this.addressTextBox.TabIndex = 4;
93      //
94      // statusLabel
95      //
96      this.statusLabel.AutoSize = true;
97      this.statusLabel.Location = new System.Drawing.Point(9, 36);
98      this.statusLabel.Name = "statusLabel";
99      this.statusLabel.Size = new System.Drawing.Size(67, 13);
100      this.statusLabel.TabIndex = 8;
101      this.statusLabel.Text = "&Client status:";
102      //
103      // statusTextBox
104      //
105      this.statusTextBox.Location = new System.Drawing.Point(96, 33);
106      this.statusTextBox.Name = "statusTextBox";
107      this.statusTextBox.ReadOnly = true;
108      this.statusTextBox.Size = new System.Drawing.Size(222, 20);
109      this.statusTextBox.TabIndex = 9;
110      //
111      // ClientForm
112      //
113      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
114      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
115      this.ClientSize = new System.Drawing.Size(330, 109);
116      this.Controls.Add(this.statusTextBox);
117      this.Controls.Add(this.statusLabel);
118      this.Controls.Add(this.label1);
119      this.Controls.Add(this.stopButton);
120      this.Controls.Add(this.startButton);
121      this.Controls.Add(this.addressTextBox);
122      this.Name = "ClientForm";
123      this.Text = "Grid Client";
124      this.ResumeLayout(false);
125      this.PerformLayout();
126
127    }
128
129    #endregion
130
131    private System.Windows.Forms.Label label1;
132    private System.Windows.Forms.Button stopButton;
133    private System.Windows.Forms.Button startButton;
134    private System.Windows.Forms.TextBox addressTextBox;
135    private System.Windows.Forms.Label statusLabel;
136    private System.Windows.Forms.TextBox statusTextBox;
137  }
138}
Note: See TracBrowser for help on using the repository browser.