123 lines
5.4 KiB
C#
123 lines
5.4 KiB
C#
namespace RCM {
|
|
partial class SimpleHostControl {
|
|
/// <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() {
|
|
this.buttonUnmaskPassword = new System.Windows.Forms.Button();
|
|
this.textBoxPassword = new System.Windows.Forms.TextBox();
|
|
this.textBoxUsername = new System.Windows.Forms.TextBox();
|
|
this.textBoxHostAddress = new System.Windows.Forms.TextBox();
|
|
this.labelPassword = new System.Windows.Forms.Label();
|
|
this.labelUsername = new System.Windows.Forms.Label();
|
|
this.labelHostAddress = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonUnmaskPassword
|
|
//
|
|
this.buttonUnmaskPassword.Location = new System.Drawing.Point(273, 51);
|
|
this.buttonUnmaskPassword.Name = "buttonUnmaskPassword";
|
|
this.buttonUnmaskPassword.Size = new System.Drawing.Size(22, 22);
|
|
this.buttonUnmaskPassword.TabIndex = 4;
|
|
this.buttonUnmaskPassword.Text = "●";
|
|
this.buttonUnmaskPassword.UseVisualStyleBackColor = true;
|
|
this.buttonUnmaskPassword.Click += new System.EventHandler(this.ButtonUnmaskPassword_Click);
|
|
//
|
|
// textBoxPassword
|
|
//
|
|
this.textBoxPassword.Location = new System.Drawing.Point(120, 52);
|
|
this.textBoxPassword.Name = "textBoxPassword";
|
|
this.textBoxPassword.Size = new System.Drawing.Size(147, 20);
|
|
this.textBoxPassword.TabIndex = 3;
|
|
this.textBoxPassword.UseSystemPasswordChar = true;
|
|
//
|
|
// textBoxUsername
|
|
//
|
|
this.textBoxUsername.Location = new System.Drawing.Point(120, 26);
|
|
this.textBoxUsername.Name = "textBoxUsername";
|
|
this.textBoxUsername.Size = new System.Drawing.Size(175, 20);
|
|
this.textBoxUsername.TabIndex = 2;
|
|
//
|
|
// textBoxHostAddress
|
|
//
|
|
this.textBoxHostAddress.Location = new System.Drawing.Point(120, 0);
|
|
this.textBoxHostAddress.Name = "textBoxHostAddress";
|
|
this.textBoxHostAddress.Size = new System.Drawing.Size(175, 20);
|
|
this.textBoxHostAddress.TabIndex = 1;
|
|
//
|
|
// labelPassword
|
|
//
|
|
this.labelPassword.AutoSize = true;
|
|
this.labelPassword.Location = new System.Drawing.Point(0, 55);
|
|
this.labelPassword.Name = "labelPassword";
|
|
this.labelPassword.Size = new System.Drawing.Size(56, 13);
|
|
this.labelPassword.TabIndex = 14;
|
|
this.labelPassword.Text = "Password:";
|
|
//
|
|
// labelUsername
|
|
//
|
|
this.labelUsername.AutoSize = true;
|
|
this.labelUsername.Location = new System.Drawing.Point(0, 29);
|
|
this.labelUsername.Name = "labelUsername";
|
|
this.labelUsername.Size = new System.Drawing.Size(58, 13);
|
|
this.labelUsername.TabIndex = 13;
|
|
this.labelUsername.Text = "Username:";
|
|
//
|
|
// labelHostAddress
|
|
//
|
|
this.labelHostAddress.AutoSize = true;
|
|
this.labelHostAddress.Location = new System.Drawing.Point(0, 3);
|
|
this.labelHostAddress.Name = "labelHostAddress";
|
|
this.labelHostAddress.Size = new System.Drawing.Size(72, 13);
|
|
this.labelHostAddress.TabIndex = 12;
|
|
this.labelHostAddress.Text = "Host address:";
|
|
//
|
|
// SimpleHostControl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonUnmaskPassword);
|
|
this.Controls.Add(this.textBoxPassword);
|
|
this.Controls.Add(this.textBoxUsername);
|
|
this.Controls.Add(this.textBoxHostAddress);
|
|
this.Controls.Add(this.labelPassword);
|
|
this.Controls.Add(this.labelUsername);
|
|
this.Controls.Add(this.labelHostAddress);
|
|
this.Name = "SimpleHostControl";
|
|
this.Size = new System.Drawing.Size(300, 75);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonUnmaskPassword;
|
|
private System.Windows.Forms.Label labelPassword;
|
|
private System.Windows.Forms.Label labelUsername;
|
|
private System.Windows.Forms.Label labelHostAddress;
|
|
public System.Windows.Forms.TextBox textBoxHostAddress;
|
|
public System.Windows.Forms.TextBox textBoxUsername;
|
|
public System.Windows.Forms.TextBox textBoxPassword;
|
|
}
|
|
}
|