122 lines
4.9 KiB
C#
122 lines
4.9 KiB
C#
namespace Izukova
|
||
{
|
||
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.button1 = new System.Windows.Forms.Button();
|
||
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.TbLogin = new System.Windows.Forms.TextBox();
|
||
this.TbPassword = new System.Windows.Forms.TextBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(221, 176);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(75, 23);
|
||
this.button1.TabIndex = 0;
|
||
this.button1.Text = "Тык";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// checkBox1
|
||
//
|
||
this.checkBox1.AutoSize = true;
|
||
this.checkBox1.Location = new System.Drawing.Point(355, 151);
|
||
this.checkBox1.Name = "checkBox1";
|
||
this.checkBox1.Size = new System.Drawing.Size(114, 17);
|
||
this.checkBox1.TabIndex = 1;
|
||
this.checkBox1.Text = "Показать пароль";
|
||
this.checkBox1.UseVisualStyleBackColor = true;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(126, 89);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(33, 13);
|
||
this.label1.TabIndex = 2;
|
||
this.label1.Text = "Login";
|
||
this.label1.Click += new System.EventHandler(this.label1_Click);
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(129, 136);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(53, 13);
|
||
this.label2.TabIndex = 3;
|
||
this.label2.Text = "Password";
|
||
this.label2.Click += new System.EventHandler(this.label2_Click);
|
||
//
|
||
// TbLogin
|
||
//
|
||
this.TbLogin.Location = new System.Drawing.Point(212, 81);
|
||
this.TbLogin.Name = "TbLogin";
|
||
this.TbLogin.Size = new System.Drawing.Size(100, 20);
|
||
this.TbLogin.TabIndex = 4;
|
||
//
|
||
// TbPassword
|
||
//
|
||
this.TbPassword.Location = new System.Drawing.Point(212, 128);
|
||
this.TbPassword.Name = "TbPassword";
|
||
this.TbPassword.Size = new System.Drawing.Size(100, 20);
|
||
this.TbPassword.TabIndex = 5;
|
||
//
|
||
// 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.TbPassword);
|
||
this.Controls.Add(this.TbLogin);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.checkBox1);
|
||
this.Controls.Add(this.button1);
|
||
this.Name = "Form1";
|
||
this.Text = "Form1";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.CheckBox checkBox1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.TextBox TbLogin;
|
||
private System.Windows.Forms.TextBox TbPassword;
|
||
}
|
||
}
|
||
|