db_AI-4/csharp/db_AI-4/LoginForm.Designer.cs

135 lines
5.6 KiB
C#

namespace db_AI_4
{
partial class LoginForm
{
/// <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.RegistrationButton = new System.Windows.Forms.Button();
this.EmailLoginBox = new System.Windows.Forms.TextBox();
this.PasswordLoginBox = new System.Windows.Forms.TextBox();
this.LoginLabel = new System.Windows.Forms.Label();
this.LoginButton = new System.Windows.Forms.Button();
this.EmailLabel = new System.Windows.Forms.Label();
this.PasswordLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// RegistrationButton
//
this.RegistrationButton.Location = new System.Drawing.Point(86, 145);
this.RegistrationButton.Name = "RegistrationButton";
this.RegistrationButton.Size = new System.Drawing.Size(75, 23);
this.RegistrationButton.TabIndex = 0;
this.RegistrationButton.Text = "Register";
this.RegistrationButton.UseVisualStyleBackColor = true;
this.RegistrationButton.Click += new System.EventHandler(this.RegistrationButton_Click);
//
// EmailLoginBox
//
this.EmailLoginBox.Location = new System.Drawing.Point(86, 44);
this.EmailLoginBox.Name = "EmailLoginBox";
this.EmailLoginBox.Size = new System.Drawing.Size(174, 22);
this.EmailLoginBox.TabIndex = 1;
//
// PasswordLoginBox
//
this.PasswordLoginBox.Location = new System.Drawing.Point(86, 87);
this.PasswordLoginBox.Name = "PasswordLoginBox";
this.PasswordLoginBox.PasswordChar = '*';
this.PasswordLoginBox.Size = new System.Drawing.Size(174, 22);
this.PasswordLoginBox.TabIndex = 2;
//
// LoginLabel
//
this.LoginLabel.AutoSize = true;
this.LoginLabel.Location = new System.Drawing.Point(12, 9);
this.LoginLabel.Name = "LoginLabel";
this.LoginLabel.Size = new System.Drawing.Size(43, 17);
this.LoginLabel.TabIndex = 4;
this.LoginLabel.Text = "Login";
//
// LoginButton
//
this.LoginButton.Location = new System.Drawing.Point(185, 145);
this.LoginButton.Name = "LoginButton";
this.LoginButton.Size = new System.Drawing.Size(75, 23);
this.LoginButton.TabIndex = 7;
this.LoginButton.Text = "Login";
this.LoginButton.UseVisualStyleBackColor = true;
this.LoginButton.Click += new System.EventHandler(this.LoginButton_Click);
//
// EmailLabel
//
this.EmailLabel.AutoSize = true;
this.EmailLabel.Location = new System.Drawing.Point(12, 44);
this.EmailLabel.Name = "EmailLabel";
this.EmailLabel.Size = new System.Drawing.Size(42, 17);
this.EmailLabel.TabIndex = 8;
this.EmailLabel.Text = "Email";
//
// PasswordLabel
//
this.PasswordLabel.AutoSize = true;
this.PasswordLabel.Location = new System.Drawing.Point(12, 87);
this.PasswordLabel.Name = "PasswordLabel";
this.PasswordLabel.Size = new System.Drawing.Size(69, 17);
this.PasswordLabel.TabIndex = 9;
this.PasswordLabel.Text = "Password";
//
// LoginForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(373, 264);
this.Controls.Add(this.PasswordLabel);
this.Controls.Add(this.EmailLabel);
this.Controls.Add(this.LoginButton);
this.Controls.Add(this.LoginLabel);
this.Controls.Add(this.PasswordLoginBox);
this.Controls.Add(this.EmailLoginBox);
this.Controls.Add(this.RegistrationButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "LoginForm";
this.Text = "Login";
this.Load += new System.EventHandler(this.LoginForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button RegistrationButton;
private System.Windows.Forms.TextBox EmailLoginBox;
private System.Windows.Forms.TextBox PasswordLoginBox;
private System.Windows.Forms.Label LoginLabel;
private System.Windows.Forms.Button LoginButton;
private System.Windows.Forms.Label EmailLabel;
private System.Windows.Forms.Label PasswordLabel;
}
}