Client/GamerServices/Systems/Forms/FormLogin.Designer.cs

189 lines
8.6 KiB
C#

namespace GamerServices
{
partial class FormLogin
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLogin));
this.buttonLogin = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.checkRememberMe = new System.Windows.Forms.CheckBox();
this.textUsername = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.textPassword = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.buttonSignup = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.timer1 = new System.Windows.Forms.Timer(this.components);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// buttonLogin
//
this.buttonLogin.Location = new System.Drawing.Point(127, 171);
this.buttonLogin.Name = "buttonLogin";
this.buttonLogin.Size = new System.Drawing.Size(124, 23);
this.buttonLogin.TabIndex = 3;
this.buttonLogin.Text = "Login";
this.buttonLogin.UseVisualStyleBackColor = true;
this.buttonLogin.Click += new System.EventHandler(this.button1_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(257, 171);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 4;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.button2_Click);
//
// checkRememberMe
//
this.checkRememberMe.AutoSize = true;
this.checkRememberMe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.checkRememberMe.Location = new System.Drawing.Point(127, 148);
this.checkRememberMe.Name = "checkRememberMe";
this.checkRememberMe.Size = new System.Drawing.Size(15, 14);
this.checkRememberMe.TabIndex = 2;
this.checkRememberMe.UseVisualStyleBackColor = true;
//
// textUsername
//
this.textUsername.Location = new System.Drawing.Point(128, 96);
this.textUsername.Name = "textUsername";
this.textUsername.Size = new System.Drawing.Size(205, 20);
this.textUsername.TabIndex = 0;
this.textUsername.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textUsername_KeyPress);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(46, 99);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(76, 13);
this.label1.TabIndex = 7;
this.label1.Text = "Account name";
//
// textPassword
//
this.textPassword.Location = new System.Drawing.Point(128, 122);
this.textPassword.Name = "textPassword";
this.textPassword.Size = new System.Drawing.Size(205, 20);
this.textPassword.TabIndex = 1;
this.textPassword.UseSystemPasswordChar = true;
this.textPassword.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textPassword_KeyPress);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(69, 125);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 13);
this.label2.TabIndex = 6;
this.label2.Text = "Password";
//
// buttonSignup
//
this.buttonSignup.Location = new System.Drawing.Point(127, 200);
this.buttonSignup.Name = "buttonSignup";
this.buttonSignup.Size = new System.Drawing.Size(205, 23);
this.buttonSignup.TabIndex = 5;
this.buttonSignup.Text = "Signup";
this.buttonSignup.UseVisualStyleBackColor = true;
this.buttonSignup.Click += new System.EventHandler(this.button3_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(47, 149);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(75, 13);
this.label3.TabIndex = 8;
this.label3.Text = "Remember me";
//
// pictureBox1
//
this.pictureBox1.Image = global::GamerServices.Properties.Resources.Gamerservices_Small;
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(388, 77);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox1.TabIndex = 9;
this.pictureBox1.TabStop = false;
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// FormLogin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(388, 255);
this.ControlBox = false;
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.label3);
this.Controls.Add(this.buttonSignup);
this.Controls.Add(this.label2);
this.Controls.Add(this.textPassword);
this.Controls.Add(this.label1);
this.Controls.Add(this.textUsername);
this.Controls.Add(this.checkRememberMe);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonLogin);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "FormLogin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Login";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonLogin;
private System.Windows.Forms.Button buttonCancel;
public System.Windows.Forms.CheckBox checkRememberMe;
public System.Windows.Forms.TextBox textUsername;
private System.Windows.Forms.Label label1;
public System.Windows.Forms.TextBox textPassword;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button buttonSignup;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Timer timer1;
}
}