83 lines
3.2 KiB
C#
83 lines
3.2 KiB
C#
namespace WindowsFormsApp13
|
||
{
|
||
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.btnLogin = new System.Windows.Forms.Button();
|
||
this.usernameTB = new System.Windows.Forms.TextBox();
|
||
this.passwordTB = new System.Windows.Forms.TextBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// btnLogin
|
||
//
|
||
this.btnLogin.Location = new System.Drawing.Point(338, 186);
|
||
this.btnLogin.Name = "btnLogin";
|
||
this.btnLogin.Size = new System.Drawing.Size(75, 23);
|
||
this.btnLogin.TabIndex = 0;
|
||
this.btnLogin.Text = "вход";
|
||
this.btnLogin.UseVisualStyleBackColor = true;
|
||
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
|
||
//
|
||
// usernameTB
|
||
//
|
||
this.usernameTB.Location = new System.Drawing.Point(327, 83);
|
||
this.usernameTB.Name = "usernameTB";
|
||
this.usernameTB.Size = new System.Drawing.Size(100, 20);
|
||
this.usernameTB.TabIndex = 1;
|
||
//
|
||
// passwordTB
|
||
//
|
||
this.passwordTB.Location = new System.Drawing.Point(327, 130);
|
||
this.passwordTB.Name = "passwordTB";
|
||
this.passwordTB.Size = new System.Drawing.Size(100, 20);
|
||
this.passwordTB.TabIndex = 2;
|
||
//
|
||
// 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.passwordTB);
|
||
this.Controls.Add(this.usernameTB);
|
||
this.Controls.Add(this.btnLogin);
|
||
this.Name = "Form1";
|
||
this.Text = "Form1";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button btnLogin;
|
||
private System.Windows.Forms.TextBox usernameTB;
|
||
private System.Windows.Forms.TextBox passwordTB;
|
||
}
|
||
}
|
||
|