110 lines
4.9 KiB
C#
110 lines
4.9 KiB
C#
namespace Neshina1703
|
|
{
|
|
partial class LoginForm
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
private System.Windows.Forms.Label lblTitle;
|
|
private System.Windows.Forms.Label lblEmail;
|
|
private System.Windows.Forms.Label lblPassword;
|
|
private System.Windows.Forms.TextBox txtEmail;
|
|
private System.Windows.Forms.TextBox txtPassword;
|
|
private System.Windows.Forms.Button btnLogin;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null)) components.Dispose();
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
|
|
this.lblTitle = new System.Windows.Forms.Label();
|
|
this.lblEmail = new System.Windows.Forms.Label();
|
|
this.lblPassword = new System.Windows.Forms.Label();
|
|
this.txtEmail = new System.Windows.Forms.TextBox();
|
|
this.txtPassword = new System.Windows.Forms.TextBox();
|
|
this.btnLogin = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblTitle
|
|
//
|
|
this.lblTitle.AutoSize = true;
|
|
this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold);
|
|
this.lblTitle.Location = new System.Drawing.Point(95, 110);
|
|
this.lblTitle.Name = "lblTitle";
|
|
this.lblTitle.Size = new System.Drawing.Size(140, 24);
|
|
this.lblTitle.TabIndex = 1;
|
|
this.lblTitle.Text = "Авторизация";
|
|
//
|
|
// lblEmail
|
|
//
|
|
this.lblEmail.AutoSize = true;
|
|
this.lblEmail.Location = new System.Drawing.Point(40, 160);
|
|
this.lblEmail.Name = "lblEmail";
|
|
this.lblEmail.Size = new System.Drawing.Size(35, 13);
|
|
this.lblEmail.TabIndex = 2;
|
|
this.lblEmail.Text = "Email:";
|
|
//
|
|
// lblPassword
|
|
//
|
|
this.lblPassword.AutoSize = true;
|
|
this.lblPassword.Location = new System.Drawing.Point(40, 210);
|
|
this.lblPassword.Name = "lblPassword";
|
|
this.lblPassword.Size = new System.Drawing.Size(48, 13);
|
|
this.lblPassword.TabIndex = 4;
|
|
this.lblPassword.Text = "Пароль:";
|
|
//
|
|
// txtEmail
|
|
//
|
|
this.txtEmail.Location = new System.Drawing.Point(43, 180);
|
|
this.txtEmail.Name = "txtEmail";
|
|
this.txtEmail.Size = new System.Drawing.Size(230, 20);
|
|
this.txtEmail.TabIndex = 3;
|
|
//
|
|
// txtPassword
|
|
//
|
|
this.txtPassword.Location = new System.Drawing.Point(43, 230);
|
|
this.txtPassword.Name = "txtPassword";
|
|
this.txtPassword.PasswordChar = '*';
|
|
this.txtPassword.Size = new System.Drawing.Size(230, 20);
|
|
this.txtPassword.TabIndex = 5;
|
|
//
|
|
// btnLogin
|
|
//
|
|
this.btnLogin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(120)))), ((int)(((byte)(215)))));
|
|
this.btnLogin.FlatAppearance.BorderSize = 0;
|
|
this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnLogin.ForeColor = System.Drawing.Color.White;
|
|
this.btnLogin.Location = new System.Drawing.Point(110, 270);
|
|
this.btnLogin.Name = "btnLogin";
|
|
this.btnLogin.Size = new System.Drawing.Size(100, 35);
|
|
this.btnLogin.TabIndex = 6;
|
|
this.btnLogin.Text = "Войти";
|
|
this.btnLogin.UseVisualStyleBackColor = false;
|
|
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
|
|
//
|
|
// LoginForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(320, 350);
|
|
this.Controls.Add(this.lblTitle);
|
|
this.Controls.Add(this.lblEmail);
|
|
this.Controls.Add(this.txtEmail);
|
|
this.Controls.Add(this.lblPassword);
|
|
this.Controls.Add(this.txtPassword);
|
|
this.Controls.Add(this.btnLogin);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "LoginForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Аптека — Вход";
|
|
this.Load += new System.EventHandler(this.LoginForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
}
|
|
} |