120 lines
4.8 KiB
C#
120 lines
4.8 KiB
C#
namespace Izukova32
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.Tblogin = new System.Windows.Forms.TextBox();
|
||
this.Tbpassword = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// Tblogin
|
||
//
|
||
this.Tblogin.Location = new System.Drawing.Point(261, 69);
|
||
this.Tblogin.Name = "Tblogin";
|
||
this.Tblogin.Size = new System.Drawing.Size(100, 20);
|
||
this.Tblogin.TabIndex = 0;
|
||
this.Tblogin.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
|
||
//
|
||
// Tbpassword
|
||
//
|
||
this.Tbpassword.Location = new System.Drawing.Point(261, 104);
|
||
this.Tbpassword.Name = "Tbpassword";
|
||
this.Tbpassword.Size = new System.Drawing.Size(100, 20);
|
||
this.Tbpassword.TabIndex = 1;
|
||
this.Tbpassword.TextChanged += new System.EventHandler(this.Tbpassword_TextChanged);
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(161, 75);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(33, 13);
|
||
this.label1.TabIndex = 2;
|
||
this.label1.Text = "Login";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(141, 111);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(53, 13);
|
||
this.label2.TabIndex = 3;
|
||
this.label2.Text = "Password";
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(261, 158);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(100, 23);
|
||
this.button1.TabIndex = 4;
|
||
this.button1.Text = "Тык";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
//
|
||
// checkBox1
|
||
//
|
||
this.checkBox1.AutoSize = true;
|
||
this.checkBox1.Location = new System.Drawing.Point(432, 139);
|
||
this.checkBox1.Name = "checkBox1";
|
||
this.checkBox1.Size = new System.Drawing.Size(114, 17);
|
||
this.checkBox1.TabIndex = 6;
|
||
this.checkBox1.Text = "Показать пароль";
|
||
this.checkBox1.UseVisualStyleBackColor = true;
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||
this.Controls.Add(this.checkBox1);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.Tbpassword);
|
||
this.Controls.Add(this.Tblogin);
|
||
this.Name = "Form1";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox Tblogin;
|
||
private System.Windows.Forms.TextBox Tbpassword;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.CheckBox checkBox1;
|
||
}
|
||
}
|
||
|