namespace WinFormsApp1
{
partial class Form1
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.PasswordTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.CheckPasswordBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// PasswordTextBox
//
this.PasswordTextBox.Location = new System.Drawing.Point(159, 12);
this.PasswordTextBox.Name = "PasswordTextBox";
this.PasswordTextBox.Size = new System.Drawing.Size(301, 31);
this.PasswordTextBox.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(141, 25);
this.label1.TabIndex = 1;
this.label1.Text = "Введите пароль";
//
// CheckPasswordBtn
//
this.CheckPasswordBtn.Location = new System.Drawing.Point(124, 88);
this.CheckPasswordBtn.Name = "CheckPasswordBtn";
this.CheckPasswordBtn.Size = new System.Drawing.Size(215, 34);
this.CheckPasswordBtn.TabIndex = 2;
this.CheckPasswordBtn.Text = "Проверить";
this.CheckPasswordBtn.UseVisualStyleBackColor = true;
this.CheckPasswordBtn.Click += new System.EventHandler(this.CheckPasswordBtn_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(475, 134);
this.Controls.Add(this.CheckPasswordBtn);
this.Controls.Add(this.label1);
this.Controls.Add(this.PasswordTextBox);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox PasswordTextBox;
private Label label1;
private Button CheckPasswordBtn;
}
}