137 lines
6.5 KiB
C#
137 lines
6.5 KiB
C#
namespace Федосеев_проект
|
||
{
|
||
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.Bt__Authorization = new System.Windows.Forms.Button();
|
||
this.label4 = new System.Windows.Forms.Label();
|
||
this.label5 = new System.Windows.Forms.Label();
|
||
this.Tb__Login = new System.Windows.Forms.TextBox();
|
||
this.Tb__Password = new System.Windows.Forms.TextBox();
|
||
this.checkBox = new System.Windows.Forms.CheckBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// Bt__Authorization
|
||
//
|
||
this.Bt__Authorization.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.Bt__Authorization.Location = new System.Drawing.Point(259, 123);
|
||
this.Bt__Authorization.Name = "Bt__Authorization";
|
||
this.Bt__Authorization.Size = new System.Drawing.Size(112, 55);
|
||
this.Bt__Authorization.TabIndex = 0;
|
||
this.Bt__Authorization.Text = "Authorization";
|
||
this.Bt__Authorization.UseVisualStyleBackColor = true;
|
||
this.Bt__Authorization.Click += new System.EventHandler(this.Bt__Authorization_Click);
|
||
//
|
||
// label4
|
||
//
|
||
this.label4.AutoSize = true;
|
||
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label4.Location = new System.Drawing.Point(9, 78);
|
||
this.label4.Name = "label4";
|
||
this.label4.Size = new System.Drawing.Size(48, 20);
|
||
this.label4.TabIndex = 1;
|
||
this.label4.Text = "Login";
|
||
//
|
||
// label5
|
||
//
|
||
this.label5.AutoSize = true;
|
||
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label5.Location = new System.Drawing.Point(9, 140);
|
||
this.label5.Name = "label5";
|
||
this.label5.Size = new System.Drawing.Size(78, 20);
|
||
this.label5.TabIndex = 2;
|
||
this.label5.Text = "Password";
|
||
//
|
||
// Tb__Login
|
||
//
|
||
this.Tb__Login.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.Tb__Login.Location = new System.Drawing.Point(109, 78);
|
||
this.Tb__Login.Name = "Tb__Login";
|
||
this.Tb__Login.Size = new System.Drawing.Size(100, 26);
|
||
this.Tb__Login.TabIndex = 4;
|
||
//
|
||
// Tb__Password
|
||
//
|
||
this.Tb__Password.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.Tb__Password.Location = new System.Drawing.Point(109, 137);
|
||
this.Tb__Password.Name = "Tb__Password";
|
||
this.Tb__Password.Size = new System.Drawing.Size(100, 26);
|
||
this.Tb__Password.TabIndex = 5;
|
||
//
|
||
// checkBox
|
||
//
|
||
this.checkBox.AutoSize = true;
|
||
this.checkBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.checkBox.Location = new System.Drawing.Point(259, 77);
|
||
this.checkBox.Name = "checkBox";
|
||
this.checkBox.Size = new System.Drawing.Size(141, 24);
|
||
this.checkBox.TabIndex = 6;
|
||
this.checkBox.Text = "Show Password";
|
||
this.checkBox.UseVisualStyleBackColor = true;
|
||
this.checkBox.CheckedChanged += new System.EventHandler(this.checkBox_CheckedChanged);
|
||
//
|
||
// Form1
|
||
//
|
||
this.BackColor = System.Drawing.Color.Silver;
|
||
this.ClientSize = new System.Drawing.Size(408, 219);
|
||
this.Controls.Add(this.checkBox);
|
||
this.Controls.Add(this.Tb__Password);
|
||
this.Controls.Add(this.Tb__Login);
|
||
this.Controls.Add(this.label5);
|
||
this.Controls.Add(this.label4);
|
||
this.Controls.Add(this.Bt__Authorization);
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "Form1";
|
||
this.Text = "Authorization";
|
||
this.Load += new System.EventHandler(this.Form1_Load_1);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox TB_Login;
|
||
private System.Windows.Forms.TextBox TB_Password;
|
||
private System.Windows.Forms.CheckBox checkBox1;
|
||
private System.Windows.Forms.Button BT_Autorization;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.Button Bt__Authorization;
|
||
private System.Windows.Forms.Label label4;
|
||
private System.Windows.Forms.Label label5;
|
||
private System.Windows.Forms.CheckBox Ch__Password;
|
||
private System.Windows.Forms.TextBox Tb__Login;
|
||
private System.Windows.Forms.TextBox Tb__Password;
|
||
private System.Windows.Forms.CheckBox checkBox;
|
||
}
|
||
}
|
||
|