2021-03-26 20:09:52 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentPortalDesctop
|
|
|
|
|
{
|
|
|
|
|
partial class FormEnter
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required designer variable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required method for Designer support - do not modify
|
|
|
|
|
/// the contents of this method with the code editor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
this.labelLogin = new System.Windows.Forms.Label();
|
|
|
|
|
this.textBoxLogin = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.labelPassword = new System.Windows.Forms.Label();
|
|
|
|
|
this.textBoxPassword = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.buttonEnter = new System.Windows.Forms.Button();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// labelLogin
|
|
|
|
|
//
|
|
|
|
|
this.labelLogin.AutoSize = true;
|
|
|
|
|
this.labelLogin.Location = new System.Drawing.Point(12, 9);
|
|
|
|
|
this.labelLogin.Name = "labelLogin";
|
|
|
|
|
this.labelLogin.Size = new System.Drawing.Size(44, 15);
|
|
|
|
|
this.labelLogin.TabIndex = 0;
|
|
|
|
|
this.labelLogin.Text = "Логин:";
|
|
|
|
|
//
|
|
|
|
|
// textBoxLogin
|
|
|
|
|
//
|
|
|
|
|
this.textBoxLogin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.textBoxLogin.Location = new System.Drawing.Point(70, 6);
|
|
|
|
|
this.textBoxLogin.Name = "textBoxLogin";
|
|
|
|
|
this.textBoxLogin.Size = new System.Drawing.Size(242, 23);
|
|
|
|
|
this.textBoxLogin.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// labelPassword
|
|
|
|
|
//
|
|
|
|
|
this.labelPassword.AutoSize = true;
|
|
|
|
|
this.labelPassword.Location = new System.Drawing.Point(12, 49);
|
|
|
|
|
this.labelPassword.Name = "labelPassword";
|
|
|
|
|
this.labelPassword.Size = new System.Drawing.Size(52, 15);
|
|
|
|
|
this.labelPassword.TabIndex = 2;
|
|
|
|
|
this.labelPassword.Text = "Пароль:";
|
|
|
|
|
//
|
|
|
|
|
// textBoxPassword
|
|
|
|
|
//
|
|
|
|
|
this.textBoxPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.textBoxPassword.Location = new System.Drawing.Point(70, 46);
|
|
|
|
|
this.textBoxPassword.Name = "textBoxPassword";
|
|
|
|
|
this.textBoxPassword.Size = new System.Drawing.Size(242, 23);
|
|
|
|
|
this.textBoxPassword.TabIndex = 3;
|
|
|
|
|
this.textBoxPassword.UseSystemPasswordChar = true;
|
|
|
|
|
//
|
|
|
|
|
// buttonEnter
|
|
|
|
|
//
|
|
|
|
|
this.buttonEnter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.buttonEnter.Cursor = System.Windows.Forms.Cursors.Hand;
|
|
|
|
|
this.buttonEnter.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
|
|
|
this.buttonEnter.Location = new System.Drawing.Point(88, 88);
|
|
|
|
|
this.buttonEnter.MinimumSize = new System.Drawing.Size(100, 30);
|
|
|
|
|
this.buttonEnter.Name = "buttonEnter";
|
|
|
|
|
this.buttonEnter.Size = new System.Drawing.Size(167, 30);
|
|
|
|
|
this.buttonEnter.TabIndex = 4;
|
|
|
|
|
this.buttonEnter.Text = "Вход";
|
|
|
|
|
this.buttonEnter.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonEnter.Click += new System.EventHandler(this.ButtonEnter_Click);
|
|
|
|
|
//
|
|
|
|
|
// FormEnter
|
|
|
|
|
//
|
2021-03-29 23:16:11 +04:00
|
|
|
|
this.AcceptButton = this.buttonEnter;
|
2021-03-26 20:09:52 +04:00
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(324, 131);
|
|
|
|
|
this.Controls.Add(this.buttonEnter);
|
|
|
|
|
this.Controls.Add(this.textBoxPassword);
|
|
|
|
|
this.Controls.Add(this.labelPassword);
|
|
|
|
|
this.Controls.Add(this.textBoxLogin);
|
|
|
|
|
this.Controls.Add(this.labelLogin);
|
|
|
|
|
this.MaximizeBox = false;
|
|
|
|
|
this.MinimizeBox = false;
|
|
|
|
|
this.Name = "FormEnter";
|
|
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
|
|
this.Text = "Вход в систему";
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.Label labelLogin;
|
|
|
|
|
private System.Windows.Forms.TextBox textBoxLogin;
|
|
|
|
|
private System.Windows.Forms.Label labelPassword;
|
|
|
|
|
private System.Windows.Forms.TextBox textBoxPassword;
|
|
|
|
|
private System.Windows.Forms.Button buttonEnter;
|
|
|
|
|
}
|
|
|
|
|
}
|