123 lines
5.0 KiB
C#
123 lines
5.0 KiB
C#
namespace _0303RogovaNeshina
|
||
{
|
||
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.btAutorization = new System.Windows.Forms.Button();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.tbLogin = new System.Windows.Forms.TextBox();
|
||
this.tbPass = new System.Windows.Forms.TextBox();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.lblReg = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// btAutorization
|
||
//
|
||
this.btAutorization.Location = new System.Drawing.Point(31, 107);
|
||
this.btAutorization.Name = "btAutorization";
|
||
this.btAutorization.Size = new System.Drawing.Size(75, 23);
|
||
this.btAutorization.TabIndex = 0;
|
||
this.btAutorization.Text = "Войти";
|
||
this.btAutorization.UseVisualStyleBackColor = true;
|
||
this.btAutorization.Click += new System.EventHandler(this.btAutorization_Click);
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(45, 13);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(38, 13);
|
||
this.label1.TabIndex = 1;
|
||
this.label1.Text = "Логин";
|
||
//
|
||
// tbLogin
|
||
//
|
||
this.tbLogin.Location = new System.Drawing.Point(20, 29);
|
||
this.tbLogin.Name = "tbLogin";
|
||
this.tbLogin.Size = new System.Drawing.Size(100, 20);
|
||
this.tbLogin.TabIndex = 2;
|
||
//
|
||
// tbPass
|
||
//
|
||
this.tbPass.Location = new System.Drawing.Point(20, 81);
|
||
this.tbPass.Name = "tbPass";
|
||
this.tbPass.Size = new System.Drawing.Size(100, 20);
|
||
this.tbPass.TabIndex = 4;
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(45, 65);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(45, 13);
|
||
this.label2.TabIndex = 3;
|
||
this.label2.Text = "Пароль";
|
||
//
|
||
// lblReg
|
||
//
|
||
this.lblReg.AutoSize = true;
|
||
this.lblReg.Location = new System.Drawing.Point(12, 145);
|
||
this.lblReg.Name = "lblReg";
|
||
this.lblReg.Size = new System.Drawing.Size(113, 13);
|
||
this.lblReg.TabIndex = 5;
|
||
this.lblReg.Text = "Зарегистрироваться";
|
||
this.lblReg.Click += new System.EventHandler(this.lblReg_Click);
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(140, 172);
|
||
this.Controls.Add(this.lblReg);
|
||
this.Controls.Add(this.tbPass);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.tbLogin);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.btAutorization);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||
this.Name = "Form1";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "Авторизация";
|
||
this.Load += new System.EventHandler(this.Form1_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button btAutorization;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.TextBox tbLogin;
|
||
private System.Windows.Forms.TextBox tbPass;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Label lblReg;
|
||
}
|
||
}
|
||
|