133 lines
4.5 KiB
C#
133 lines
4.5 KiB
C#
|
||
namespace Diplom_B
|
||
{
|
||
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.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.textBox2 = new System.Windows.Forms.TextBox();
|
||
this.label3 = new System.Windows.Forms.Label();
|
||
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(190, 58);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(75, 23);
|
||
this.button1.TabIndex = 3;
|
||
this.button1.Text = "Войти";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(12, 9);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(83, 13);
|
||
this.label1.TabIndex = 1;
|
||
this.label1.Text = "Пользователь:";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(47, 35);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(48, 13);
|
||
this.label2.TabIndex = 4;
|
||
this.label2.Text = "Пароль:";
|
||
//
|
||
// textBox2
|
||
//
|
||
this.textBox2.Location = new System.Drawing.Point(101, 32);
|
||
this.textBox2.Name = "textBox2";
|
||
this.textBox2.Size = new System.Drawing.Size(164, 20);
|
||
this.textBox2.TabIndex = 2;
|
||
this.textBox2.UseSystemPasswordChar = true;
|
||
//
|
||
// label3
|
||
//
|
||
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label3.ForeColor = System.Drawing.Color.Red;
|
||
this.label3.Location = new System.Drawing.Point(12, 63);
|
||
this.label3.Name = "label3";
|
||
this.label3.Size = new System.Drawing.Size(172, 18);
|
||
this.label3.TabIndex = 6;
|
||
this.label3.Text = "Отображение ошибки";
|
||
//
|
||
// comboBox1
|
||
//
|
||
this.comboBox1.FormattingEnabled = true;
|
||
this.comboBox1.Items.AddRange(new object[] {
|
||
"Разработчик",
|
||
"Конструктор",
|
||
"Монтажник",
|
||
"Упаковщик"});
|
||
this.comboBox1.Location = new System.Drawing.Point(101, 6);
|
||
this.comboBox1.Name = "comboBox1";
|
||
this.comboBox1.Size = new System.Drawing.Size(161, 21);
|
||
this.comboBox1.TabIndex = 1;
|
||
//
|
||
// FormLogin
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(274, 92);
|
||
this.Controls.Add(this.comboBox1);
|
||
this.Controls.Add(this.label3);
|
||
this.Controls.Add(this.textBox2);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.button1);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "FormLogin";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "Авторизация";
|
||
this.TopMost = true;
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.TextBox textBox2;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.ComboBox comboBox1;
|
||
}
|
||
}
|
||
|