Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Operator Architecture Refactoring/HeuristicLab.Hive.Server.Console/HiveServerConsole.Designer.cs @ 1268

Last change on this file since 1268 was 778, checked in by aleitner, 16 years ago

Created project HiveServerConsole (#369)

File size: 6.5 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.Hive.Server.Console {
23  partial class HiveServerConsole {
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.msServerConsole = new System.Windows.Forms.MenuStrip();
48      this.tsmiConsole = new System.Windows.Forms.ToolStripMenuItem();
49      this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
50      this.gbManager = new System.Windows.Forms.GroupBox();
51      this.lblPort = new System.Windows.Forms.Label();
52      this.lblIp = new System.Windows.Forms.Label();
53      this.tbPort = new System.Windows.Forms.TextBox();
54      this.tbIp = new HeuristicLab.Hive.Server.Console.IPAddressTextBox();
55      this.btnLogin = new System.Windows.Forms.Button();
56      this.msServerConsole.SuspendLayout();
57      this.gbManager.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // msServerConsole
61      //
62      this.msServerConsole.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
63            this.tsmiConsole});
64      this.msServerConsole.Location = new System.Drawing.Point(0, 0);
65      this.msServerConsole.Name = "msServerConsole";
66      this.msServerConsole.Size = new System.Drawing.Size(311, 24);
67      this.msServerConsole.TabIndex = 0;
68      this.msServerConsole.Text = "menuStrip1";
69      //
70      // tsmiConsole
71      //
72      this.tsmiConsole.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
73            this.tsmiExit});
74      this.tsmiConsole.Name = "tsmiConsole";
75      this.tsmiConsole.Size = new System.Drawing.Size(87, 20);
76      this.tsmiConsole.Text = "Serverconsole";
77      //
78      // tsmiExit
79      //
80      this.tsmiExit.Name = "tsmiExit";
81      this.tsmiExit.Size = new System.Drawing.Size(152, 22);
82      this.tsmiExit.Text = "Exit";
83      this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
84      //
85      // gbManager
86      //
87      this.gbManager.Controls.Add(this.lblPort);
88      this.gbManager.Controls.Add(this.lblIp);
89      this.gbManager.Controls.Add(this.tbPort);
90      this.gbManager.Controls.Add(this.tbIp);
91      this.gbManager.Location = new System.Drawing.Point(12, 37);
92      this.gbManager.Name = "gbManager";
93      this.gbManager.Size = new System.Drawing.Size(283, 82);
94      this.gbManager.TabIndex = 1;
95      this.gbManager.TabStop = false;
96      this.gbManager.Text = "Manager";
97      //
98      // lblPort
99      //
100      this.lblPort.AutoSize = true;
101      this.lblPort.Location = new System.Drawing.Point(16, 54);
102      this.lblPort.Name = "lblPort";
103      this.lblPort.Size = new System.Drawing.Size(26, 13);
104      this.lblPort.TabIndex = 3;
105      this.lblPort.Text = "Port";
106      //
107      // lblIp
108      //
109      this.lblIp.AutoSize = true;
110      this.lblIp.Location = new System.Drawing.Point(16, 26);
111      this.lblIp.Name = "lblIp";
112      this.lblIp.Size = new System.Drawing.Size(17, 13);
113      this.lblIp.TabIndex = 2;
114      this.lblIp.Text = "IP";
115      //
116      // tbPort
117      //
118      this.tbPort.Location = new System.Drawing.Point(57, 47);
119      this.tbPort.Name = "tbPort";
120      this.tbPort.Size = new System.Drawing.Size(209, 20);
121      this.tbPort.TabIndex = 1;
122      //
123      // tbIp
124      //
125      this.tbIp.Location = new System.Drawing.Point(57, 19);
126      this.tbIp.Name = "tbIp";
127      this.tbIp.Size = new System.Drawing.Size(211, 20);
128      this.tbIp.TabIndex = 0;
129      //
130      // btnLogin
131      //
132      this.btnLogin.Location = new System.Drawing.Point(179, 127);
133      this.btnLogin.Name = "btnLogin";
134      this.btnLogin.Size = new System.Drawing.Size(116, 23);
135      this.btnLogin.TabIndex = 2;
136      this.btnLogin.Text = "Login";
137      this.btnLogin.UseVisualStyleBackColor = true;
138      this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
139      //
140      // HiveServerConsole
141      //
142      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
143      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
144      this.ClientSize = new System.Drawing.Size(311, 162);
145      this.Controls.Add(this.btnLogin);
146      this.Controls.Add(this.gbManager);
147      this.Controls.Add(this.msServerConsole);
148      this.MainMenuStrip = this.msServerConsole;
149      this.Name = "HiveServerConsole";
150      this.Text = "Server Console";
151      this.msServerConsole.ResumeLayout(false);
152      this.msServerConsole.PerformLayout();
153      this.gbManager.ResumeLayout(false);
154      this.gbManager.PerformLayout();
155      this.ResumeLayout(false);
156      this.PerformLayout();
157
158    }
159
160    #endregion
161
162    private System.Windows.Forms.MenuStrip msServerConsole;
163    private System.Windows.Forms.ToolStripMenuItem tsmiConsole;
164    private System.Windows.Forms.ToolStripMenuItem tsmiExit;
165    private System.Windows.Forms.GroupBox gbManager;
166    private System.Windows.Forms.Label lblPort;
167    private System.Windows.Forms.Label lblIp;
168    private System.Windows.Forms.TextBox tbPort;
169    private IPAddressTextBox tbIp;
170    private System.Windows.Forms.Button btnLogin;
171  }
172}
173
Note: See TracBrowser for help on using the repository browser.