107 lines
4.2 KiB
C#
107 lines
4.2 KiB
C#
namespace merkulov5
|
||
{
|
||
partial class LoginForm
|
||
{
|
||
/// <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.button1 = new System.Windows.Forms.Button();
|
||
this.loginField = new System.Windows.Forms.TextBox();
|
||
this.passField = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(104, 216);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(75, 23);
|
||
this.button1.TabIndex = 0;
|
||
this.button1.Text = "Войти";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// loginField
|
||
//
|
||
this.loginField.Location = new System.Drawing.Point(92, 116);
|
||
this.loginField.Name = "loginField";
|
||
this.loginField.Size = new System.Drawing.Size(100, 20);
|
||
this.loginField.TabIndex = 1;
|
||
//
|
||
// passField
|
||
//
|
||
this.passField.Location = new System.Drawing.Point(92, 166);
|
||
this.passField.Name = "passField";
|
||
this.passField.Size = new System.Drawing.Size(100, 20);
|
||
this.passField.TabIndex = 2;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(92, 100);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(38, 13);
|
||
this.label1.TabIndex = 3;
|
||
this.label1.Text = "Логин";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(92, 150);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(45, 13);
|
||
this.label2.TabIndex = 4;
|
||
this.label2.Text = "Пароль";
|
||
//
|
||
// LoginForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(302, 327);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.passField);
|
||
this.Controls.Add(this.loginField);
|
||
this.Controls.Add(this.button1);
|
||
this.Name = "LoginForm";
|
||
this.Text = "Form1";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.TextBox loginField;
|
||
private System.Windows.Forms.TextBox passField;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
}
|
||
}
|
||
|