125 lines
5.2 KiB
C#
125 lines
5.2 KiB
C#
namespace _0603NeshinaRogova
|
||
{
|
||
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.tbPass = new System.Windows.Forms.TextBox();
|
||
this.tbLogin = new System.Windows.Forms.TextBox();
|
||
this.label3 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.SuspendLayout();
|
||
//
|
||
// tbPass
|
||
//
|
||
this.tbPass.Location = new System.Drawing.Point(39, 232);
|
||
this.tbPass.Name = "tbPass";
|
||
this.tbPass.Size = new System.Drawing.Size(245, 20);
|
||
this.tbPass.TabIndex = 11;
|
||
this.tbPass.TextChanged += new System.EventHandler(this.tbPass_TextChanged);
|
||
//
|
||
// tbLogin
|
||
//
|
||
this.tbLogin.Location = new System.Drawing.Point(39, 169);
|
||
this.tbLogin.Name = "tbLogin";
|
||
this.tbLogin.Size = new System.Drawing.Size(245, 20);
|
||
this.tbLogin.TabIndex = 10;
|
||
this.tbLogin.TextChanged += new System.EventHandler(this.tbLogin_TextChanged);
|
||
//
|
||
// label3
|
||
//
|
||
this.label3.AutoSize = true;
|
||
this.label3.Location = new System.Drawing.Point(36, 215);
|
||
this.label3.Name = "label3";
|
||
this.label3.Size = new System.Drawing.Size(45, 13);
|
||
this.label3.TabIndex = 9;
|
||
this.label3.Text = "Пароль";
|
||
this.label3.Click += new System.EventHandler(this.label3_Click);
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(36, 152);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(38, 13);
|
||
this.label2.TabIndex = 8;
|
||
this.label2.Text = "Логин";
|
||
this.label2.Click += new System.EventHandler(this.label2_Click);
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label1.Location = new System.Drawing.Point(87, 72);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(152, 25);
|
||
this.label1.TabIndex = 7;
|
||
this.label1.Text = "Авторизация";
|
||
this.label1.Click += new System.EventHandler(this.label1_Click);
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(124, 302);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(75, 23);
|
||
this.button1.TabIndex = 6;
|
||
this.button1.Text = "Войти";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(324, 416);
|
||
this.Controls.Add(this.tbPass);
|
||
this.Controls.Add(this.tbLogin);
|
||
this.Controls.Add(this.label3);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.button1);
|
||
this.Name = "Form1";
|
||
this.Text = "Form1";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox tbPass;
|
||
private System.Windows.Forms.TextBox tbLogin;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Button button1;
|
||
}
|
||
}
|
||
|