namespace XCoder.Data
{
partial class FrmRedisConfig
{
/// <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 Windows Form 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()
{
this.label1 = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtServer = new System.Windows.Forms.TextBox();
this.txtPort = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.txtUsername = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(69, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(54, 20);
this.label1.TabIndex = 0;
this.label1.Text = "名称:";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(160, 29);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(179, 27);
this.txtName.TabIndex = 1;
this.txtName.Text = "127.0.0.1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(51, 84);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(69, 20);
this.label2.TabIndex = 2;
this.label2.Text = "服务器:";
//
// txtServer
//
this.txtServer.Location = new System.Drawing.Point(160, 79);
this.txtServer.Name = "txtServer";
this.txtServer.Size = new System.Drawing.Size(179, 27);
this.txtServer.TabIndex = 3;
this.txtServer.Text = "127.0.0.1";
//
// txtPort
//
this.txtPort.Location = new System.Drawing.Point(451, 79);
this.txtPort.Name = "txtPort";
this.txtPort.Size = new System.Drawing.Size(100, 27);
this.txtPort.TabIndex = 4;
this.txtPort.Text = "6379";
this.txtPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(160, 129);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(179, 27);
this.txtPassword.TabIndex = 5;
//
// txtUsername
//
this.txtUsername.Location = new System.Drawing.Point(160, 190);
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(179, 27);
this.txtUsername.TabIndex = 6;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(383, 84);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(54, 20);
this.label3.TabIndex = 7;
this.label3.Text = "端口:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(69, 134);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(54, 20);
this.label4.TabIndex = 8;
this.label4.Text = "密码:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(51, 190);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(69, 20);
this.label5.TabIndex = 9;
this.label5.Text = "用户名:";
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(438, 171);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(113, 58);
this.btnOK.TabIndex = 10;
this.btnOK.Text = "确认";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// FrmRedisConfig
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(585, 263);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtUsername);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.txtPort);
this.Controls.Add(this.txtServer);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtName);
this.Controls.Add(this.label1);
this.Name = "FrmRedisConfig";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FrmRedisConfig";
this.Load += new System.EventHandler(this.FrmRedisConfig_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtServer;
private System.Windows.Forms.TextBox txtPort;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.TextBox txtUsername;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Button btnOK;
}
}
|