Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Hive_Management_Console_Refactoring_Ticket508/HeuristicLab.Hive.Server.Console/HiveServerConsole.Designer.cs @ 1372

Last change on this file since 1372 was 1372, checked in by aleitner, 15 years ago

find changes in backgroundworker (#508)

File size: 8.4 KB
RevLine 
[778]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
[1089]22namespace HeuristicLab.Hive.Server.ServerConsole {
[778]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() {
[1372]47      this.gbConfiguration = new System.Windows.Forms.GroupBox();
[778]48      this.lblPort = new System.Windows.Forms.Label();
49      this.lblIp = new System.Windows.Forms.Label();
50      this.tbPort = new System.Windows.Forms.TextBox();
[1037]51      this.tbIp = new System.Windows.Forms.TextBox();
[912]52      this.btnLogin = new System.Windows.Forms.Button();
[1372]53      this.gpUser = new System.Windows.Forms.GroupBox();
[956]54      this.tbUserName = new System.Windows.Forms.TextBox();
[912]55      this.lblPwd = new System.Windows.Forms.Label();
56      this.lblUsername = new System.Windows.Forms.Label();
57      this.tbPwd = new System.Windows.Forms.TextBox();
58      this.lblError = new System.Windows.Forms.Label();
[1372]59      this.gbConfiguration.SuspendLayout();
60      this.gpUser.SuspendLayout();
[778]61      this.SuspendLayout();
62      //
[1372]63      // gbConfiguration
[778]64      //
[1372]65      this.gbConfiguration.Controls.Add(this.lblPort);
66      this.gbConfiguration.Controls.Add(this.lblIp);
67      this.gbConfiguration.Controls.Add(this.tbPort);
68      this.gbConfiguration.Controls.Add(this.tbIp);
69      this.gbConfiguration.Location = new System.Drawing.Point(12, 100);
70      this.gbConfiguration.Name = "gbConfiguration";
71      this.gbConfiguration.Size = new System.Drawing.Size(283, 82);
72      this.gbConfiguration.TabIndex = 4;
73      this.gbConfiguration.TabStop = false;
74      this.gbConfiguration.Text = "Configuration";
[778]75      //
76      // lblPort
77      //
78      this.lblPort.AutoSize = true;
79      this.lblPort.Location = new System.Drawing.Point(16, 54);
80      this.lblPort.Name = "lblPort";
81      this.lblPort.Size = new System.Drawing.Size(26, 13);
82      this.lblPort.TabIndex = 3;
83      this.lblPort.Text = "Port";
84      //
85      // lblIp
86      //
87      this.lblIp.AutoSize = true;
88      this.lblIp.Location = new System.Drawing.Point(16, 26);
89      this.lblIp.Name = "lblIp";
90      this.lblIp.Size = new System.Drawing.Size(17, 13);
91      this.lblIp.TabIndex = 2;
92      this.lblIp.Text = "IP";
93      //
94      // tbPort
95      //
[912]96      this.tbPort.Location = new System.Drawing.Point(77, 47);
[778]97      this.tbPort.Name = "tbPort";
[912]98      this.tbPort.Size = new System.Drawing.Size(189, 20);
[1037]99      this.tbPort.TabIndex = 6;
[1164]100      this.tbPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[778]101      //
[1037]102      // tbIp
103      //
104      this.tbIp.Location = new System.Drawing.Point(77, 19);
105      this.tbIp.Name = "tbIp";
106      this.tbIp.Size = new System.Drawing.Size(191, 20);
107      this.tbIp.TabIndex = 5;
[1164]108      this.tbIp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[1037]109      //
[778]110      // btnLogin
111      //
[1372]112      this.btnLogin.Location = new System.Drawing.Point(179, 188);
[778]113      this.btnLogin.Name = "btnLogin";
114      this.btnLogin.Size = new System.Drawing.Size(116, 23);
[1037]115      this.btnLogin.TabIndex = 7;
[778]116      this.btnLogin.Text = "Login";
117      this.btnLogin.UseVisualStyleBackColor = true;
[1037]118      this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
[1164]119      this.btnLogin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[778]120      //
[1372]121      // gpUser
[912]122      //
[1372]123      this.gpUser.Controls.Add(this.tbUserName);
124      this.gpUser.Controls.Add(this.lblPwd);
125      this.gpUser.Controls.Add(this.lblUsername);
126      this.gpUser.Controls.Add(this.tbPwd);
127      this.gpUser.Location = new System.Drawing.Point(12, 12);
128      this.gpUser.Name = "gpUser";
129      this.gpUser.Size = new System.Drawing.Size(283, 82);
130      this.gpUser.TabIndex = 1;
131      this.gpUser.TabStop = false;
132      this.gpUser.Text = "User";
[912]133      //
[956]134      // tbUserName
135      //
136      this.tbUserName.Location = new System.Drawing.Point(77, 19);
137      this.tbUserName.Name = "tbUserName";
138      this.tbUserName.Size = new System.Drawing.Size(189, 20);
[1037]139      this.tbUserName.TabIndex = 2;
[1164]140      this.tbUserName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[956]141      //
[912]142      // lblPwd
143      //
144      this.lblPwd.AutoSize = true;
145      this.lblPwd.Location = new System.Drawing.Point(16, 54);
146      this.lblPwd.Name = "lblPwd";
147      this.lblPwd.Size = new System.Drawing.Size(53, 13);
148      this.lblPwd.TabIndex = 3;
149      this.lblPwd.Text = "Password";
150      //
151      // lblUsername
152      //
153      this.lblUsername.AutoSize = true;
154      this.lblUsername.Location = new System.Drawing.Point(16, 26);
155      this.lblUsername.Name = "lblUsername";
156      this.lblUsername.Size = new System.Drawing.Size(55, 13);
157      this.lblUsername.TabIndex = 2;
158      this.lblUsername.Text = "Username";
159      //
160      // tbPwd
161      //
162      this.tbPwd.Location = new System.Drawing.Point(77, 47);
163      this.tbPwd.Name = "tbPwd";
164      this.tbPwd.Size = new System.Drawing.Size(189, 20);
[1037]165      this.tbPwd.TabIndex = 3;
[956]166      this.tbPwd.UseSystemPasswordChar = true;
[1164]167      this.tbPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[912]168      //
169      // lblError
170      //
171      this.lblError.AutoSize = true;
172      this.lblError.ForeColor = System.Drawing.Color.Red;
173      this.lblError.Location = new System.Drawing.Point(16, 238);
174      this.lblError.Name = "lblError";
175      this.lblError.Size = new System.Drawing.Size(0, 13);
176      this.lblError.TabIndex = 5;
177      //
[778]178      // HiveServerConsole
179      //
180      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
181      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[1372]182      this.ClientSize = new System.Drawing.Size(311, 225);
[912]183      this.Controls.Add(this.lblError);
[1372]184      this.Controls.Add(this.gpUser);
[778]185      this.Controls.Add(this.btnLogin);
[1372]186      this.Controls.Add(this.gbConfiguration);
[778]187      this.Name = "HiveServerConsole";
188      this.Text = "Server Console";
[1164]189      this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[1372]190      this.gbConfiguration.ResumeLayout(false);
191      this.gbConfiguration.PerformLayout();
192      this.gpUser.ResumeLayout(false);
193      this.gpUser.PerformLayout();
[778]194      this.ResumeLayout(false);
195      this.PerformLayout();
196
197    }
198
199    #endregion
200
[1372]201    private System.Windows.Forms.GroupBox gbConfiguration;
[778]202    private System.Windows.Forms.Label lblPort;
203    private System.Windows.Forms.Label lblIp;
204    private System.Windows.Forms.TextBox tbPort;
[978]205    private System.Windows.Forms.TextBox tbIp;
[778]206    private System.Windows.Forms.Button btnLogin;
[1372]207    private System.Windows.Forms.GroupBox gpUser;
[912]208    private System.Windows.Forms.TextBox tbUserName;
209    private System.Windows.Forms.Label lblPwd;
210    private System.Windows.Forms.Label lblUsername;
211    private System.Windows.Forms.TextBox tbPwd;
212    private System.Windows.Forms.Label lblError;
[778]213  }
214}
215
Note: See TracBrowser for help on using the repository browser.