websitepanel/WebsitePanel.Installer/Sources/WebsitePanel.Installer/Controls/ServersControl.Designer.cs
2011-07-13 16:07:32 -07:00

166 lines
7 KiB
C#

namespace WebsitePanel.Installer.Controls
{
partial class ServersControl
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServersControl));
this.grpConnectionSettings = new System.Windows.Forms.GroupBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.lblPassword = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.lblPort = new System.Windows.Forms.Label();
this.txtServer = new System.Windows.Forms.TextBox();
this.lblServer = new System.Windows.Forms.Label();
this.btnAdd = new System.Windows.Forms.Button();
this.btnTest = new System.Windows.Forms.Button();
this.grpConnectionSettings.SuspendLayout();
this.SuspendLayout();
//
// grpConnectionSettings
//
this.grpConnectionSettings.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.grpConnectionSettings.Controls.Add(this.txtPassword);
this.grpConnectionSettings.Controls.Add(this.lblPassword);
this.grpConnectionSettings.Controls.Add(this.txtPort);
this.grpConnectionSettings.Controls.Add(this.lblPort);
this.grpConnectionSettings.Controls.Add(this.txtServer);
this.grpConnectionSettings.Controls.Add(this.lblServer);
this.grpConnectionSettings.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.grpConnectionSettings.Location = new System.Drawing.Point(14, 3);
this.grpConnectionSettings.Name = "grpConnectionSettings";
this.grpConnectionSettings.Size = new System.Drawing.Size(379, 122);
this.grpConnectionSettings.TabIndex = 0;
this.grpConnectionSettings.TabStop = false;
this.grpConnectionSettings.Text = "Connection settings";
//
// txtPassword
//
this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtPassword.Location = new System.Drawing.Point(122, 82);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(234, 21);
this.txtPassword.TabIndex = 5;
//
// lblPassword
//
this.lblPassword.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblPassword.Location = new System.Drawing.Point(16, 82);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(100, 21);
this.lblPassword.TabIndex = 4;
this.lblPassword.Text = "Password";
//
// txtPort
//
this.txtPort.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtPort.Location = new System.Drawing.Point(122, 55);
this.txtPort.Name = "txtPort";
this.txtPort.Size = new System.Drawing.Size(234, 21);
this.txtPort.TabIndex = 3;
//
// lblPort
//
this.lblPort.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblPort.Location = new System.Drawing.Point(16, 55);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(100, 21);
this.lblPort.TabIndex = 2;
this.lblPort.Text = "Port";
//
// txtServer
//
this.txtServer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtServer.Location = new System.Drawing.Point(122, 28);
this.txtServer.Name = "txtServer";
this.txtServer.Size = new System.Drawing.Size(234, 21);
this.txtServer.TabIndex = 1;
//
// lblServer
//
this.lblServer.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblServer.Location = new System.Drawing.Point(16, 28);
this.lblServer.Name = "lblServer";
this.lblServer.Size = new System.Drawing.Size(100, 21);
this.lblServer.TabIndex = 0;
this.lblServer.Text = "Server";
//
// btnAdd
//
this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
this.btnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnAdd.Location = new System.Drawing.Point(148, 131);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(128, 28);
this.btnAdd.TabIndex = 9;
this.btnAdd.Text = "Add server";
this.btnAdd.UseVisualStyleBackColor = true;
//
// btnTest
//
this.btnTest.Image = ((System.Drawing.Image)(resources.GetObject("btnTest.Image")));
this.btnTest.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnTest.Location = new System.Drawing.Point(14, 131);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(128, 28);
this.btnTest.TabIndex = 8;
this.btnTest.Text = "Test connection";
this.btnTest.UseVisualStyleBackColor = true;
//
// ServersControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.btnTest);
this.Controls.Add(this.grpConnectionSettings);
this.Name = "ServersControl";
this.Size = new System.Drawing.Size(406, 327);
this.grpConnectionSettings.ResumeLayout(false);
this.grpConnectionSettings.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox grpConnectionSettings;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.TextBox txtPort;
private System.Windows.Forms.Label lblPort;
private System.Windows.Forms.TextBox txtServer;
private System.Windows.Forms.Label lblServer;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnTest;
}
}