Files
pkrstarsbot/client_winforms/VisualStudioProject/PokerStarsBotClientv2/PokerStarsBotClientv2/LoginForm.Designer.cs
2021-02-16 23:07:41 +01:00

261 lines
15 KiB
C#

namespace PokerStarsBotClientv2
{
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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
this.panelLogo = new System.Windows.Forms.Panel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panelLogin = new System.Windows.Forms.Panel();
this.btnLogin = new System.Windows.Forms.Button();
this.checkBoxRememberMe = new System.Windows.Forms.CheckBox();
this.panelPassword = new System.Windows.Forms.Panel();
this.textBoxPassword = new System.Windows.Forms.TextBox();
this.iconPictureBox1 = new FontAwesome.Sharp.IconPictureBox();
this.panelUser = new System.Windows.Forms.Panel();
this.textBoxUser = new System.Windows.Forms.TextBox();
this.iconPictureBoxUser = new FontAwesome.Sharp.IconPictureBox();
this.labelLogin = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.panelLogo.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panelLogin.SuspendLayout();
this.panelPassword.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.iconPictureBox1)).BeginInit();
this.panelUser.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.iconPictureBoxUser)).BeginInit();
this.SuspendLayout();
//
// panelLogo
//
this.panelLogo.Controls.Add(this.pictureBox1);
this.panelLogo.Dock = System.Windows.Forms.DockStyle.Left;
this.panelLogo.Location = new System.Drawing.Point(0, 0);
this.panelLogo.Name = "panelLogo";
this.panelLogo.Size = new System.Drawing.Size(350, 411);
this.panelLogo.TabIndex = 0;
//
// pictureBox1
//
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(1);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(350, 411);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// panelLogin
//
this.panelLogin.BackColor = System.Drawing.Color.White;
this.panelLogin.Controls.Add(this.btnLogin);
this.panelLogin.Controls.Add(this.checkBoxRememberMe);
this.panelLogin.Controls.Add(this.panelPassword);
this.panelLogin.Controls.Add(this.iconPictureBox1);
this.panelLogin.Controls.Add(this.panelUser);
this.panelLogin.Controls.Add(this.iconPictureBoxUser);
this.panelLogin.Controls.Add(this.labelLogin);
this.panelLogin.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelLogin.Location = new System.Drawing.Point(350, 0);
this.panelLogin.Name = "panelLogin";
this.panelLogin.Size = new System.Drawing.Size(334, 411);
this.panelLogin.TabIndex = 1;
//
// btnLogin
//
this.btnLogin.Enabled = false;
this.btnLogin.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnLogin.Location = new System.Drawing.Point(45, 294);
this.btnLogin.Margin = new System.Windows.Forms.Padding(1);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(270, 29);
this.btnLogin.TabIndex = 18;
this.btnLogin.Text = "Login";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// checkBoxRememberMe
//
this.checkBoxRememberMe.AutoSize = true;
this.checkBoxRememberMe.FlatAppearance.BorderSize = 0;
this.checkBoxRememberMe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.checkBoxRememberMe.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBoxRememberMe.Location = new System.Drawing.Point(45, 256);
this.checkBoxRememberMe.Margin = new System.Windows.Forms.Padding(1);
this.checkBoxRememberMe.Name = "checkBoxRememberMe";
this.checkBoxRememberMe.Size = new System.Drawing.Size(130, 24);
this.checkBoxRememberMe.TabIndex = 17;
this.checkBoxRememberMe.Text = "Remember me";
this.checkBoxRememberMe.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.checkBoxRememberMe.UseVisualStyleBackColor = true;
this.checkBoxRememberMe.CheckedChanged += new System.EventHandler(this.checkBoxRememberMe_CheckedChanged);
//
// panelPassword
//
this.panelPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panelPassword.Controls.Add(this.textBoxPassword);
this.panelPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.panelPassword.Location = new System.Drawing.Point(52, 159);
this.panelPassword.Margin = new System.Windows.Forms.Padding(1);
this.panelPassword.Name = "panelPassword";
this.panelPassword.Padding = new System.Windows.Forms.Padding(8, 2, 8, 2);
this.panelPassword.Size = new System.Drawing.Size(263, 25);
this.panelPassword.TabIndex = 16;
//
// textBoxPassword
//
this.textBoxPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBoxPassword.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textBoxPassword.Location = new System.Drawing.Point(8, 2);
this.textBoxPassword.Margin = new System.Windows.Forms.Padding(1);
this.textBoxPassword.Multiline = true;
this.textBoxPassword.Name = "textBoxPassword";
this.textBoxPassword.PasswordChar = '*';
this.textBoxPassword.Size = new System.Drawing.Size(245, 19);
this.textBoxPassword.TabIndex = 6;
this.textBoxPassword.TextChanged += new System.EventHandler(this.z);
this.textBoxPassword.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxPassword_KeyUp);
//
// iconPictureBox1
//
this.iconPictureBox1.BackColor = System.Drawing.Color.White;
this.iconPictureBox1.ForeColor = System.Drawing.SystemColors.ControlText;
this.iconPictureBox1.IconChar = FontAwesome.Sharp.IconChar.Lock;
this.iconPictureBox1.IconColor = System.Drawing.SystemColors.ControlText;
this.iconPictureBox1.IconFont = FontAwesome.Sharp.IconFont.Solid;
this.iconPictureBox1.IconSize = 22;
this.iconPictureBox1.Location = new System.Drawing.Point(22, 162);
this.iconPictureBox1.Margin = new System.Windows.Forms.Padding(1);
this.iconPictureBox1.Name = "iconPictureBox1";
this.iconPictureBox1.Size = new System.Drawing.Size(26, 22);
this.iconPictureBox1.TabIndex = 15;
this.iconPictureBox1.TabStop = false;
//
// panelUser
//
this.panelUser.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panelUser.Controls.Add(this.textBoxUser);
this.panelUser.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.panelUser.Location = new System.Drawing.Point(52, 122);
this.panelUser.Margin = new System.Windows.Forms.Padding(1);
this.panelUser.Name = "panelUser";
this.panelUser.Padding = new System.Windows.Forms.Padding(8, 2, 8, 2);
this.panelUser.Size = new System.Drawing.Size(263, 25);
this.panelUser.TabIndex = 14;
//
// textBoxUser
//
this.textBoxUser.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBoxUser.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxUser.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textBoxUser.Location = new System.Drawing.Point(8, 2);
this.textBoxUser.Margin = new System.Windows.Forms.Padding(1);
this.textBoxUser.Multiline = true;
this.textBoxUser.Name = "textBoxUser";
this.textBoxUser.Size = new System.Drawing.Size(245, 19);
this.textBoxUser.TabIndex = 6;
this.textBoxUser.Text = "Your email";
this.textBoxUser.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxUser_KeyUp);
//
// iconPictureBoxUser
//
this.iconPictureBoxUser.BackColor = System.Drawing.Color.White;
this.iconPictureBoxUser.ForeColor = System.Drawing.SystemColors.ControlText;
this.iconPictureBoxUser.IconChar = FontAwesome.Sharp.IconChar.User;
this.iconPictureBoxUser.IconColor = System.Drawing.SystemColors.ControlText;
this.iconPictureBoxUser.IconFont = FontAwesome.Sharp.IconFont.Solid;
this.iconPictureBoxUser.IconSize = 23;
this.iconPictureBoxUser.Location = new System.Drawing.Point(22, 122);
this.iconPictureBoxUser.Margin = new System.Windows.Forms.Padding(1);
this.iconPictureBoxUser.Name = "iconPictureBoxUser";
this.iconPictureBoxUser.Size = new System.Drawing.Size(26, 23);
this.iconPictureBoxUser.TabIndex = 13;
this.iconPictureBoxUser.TabStop = false;
//
// labelLogin
//
this.labelLogin.AutoSize = true;
this.labelLogin.Font = new System.Drawing.Font("Microsoft Sans Serif", 27.9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelLogin.Location = new System.Drawing.Point(37, 23);
this.labelLogin.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0);
this.labelLogin.Name = "labelLogin";
this.labelLogin.Size = new System.Drawing.Size(113, 44);
this.labelLogin.TabIndex = 12;
this.labelLogin.Text = "Login";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// LoginForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(684, 411);
this.Controls.Add(this.panelLogin);
this.Controls.Add(this.panelLogo);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "LoginForm";
this.Text = "PkrStarsBot Client";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LoginForm_FormClosing);
this.panelLogo.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panelLogin.ResumeLayout(false);
this.panelLogin.PerformLayout();
this.panelPassword.ResumeLayout(false);
this.panelPassword.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.iconPictureBox1)).EndInit();
this.panelUser.ResumeLayout(false);
this.panelUser.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.iconPictureBoxUser)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panelLogo;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Panel panelLogin;
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.CheckBox checkBoxRememberMe;
private System.Windows.Forms.Panel panelPassword;
private System.Windows.Forms.TextBox textBoxPassword;
private FontAwesome.Sharp.IconPictureBox iconPictureBox1;
private System.Windows.Forms.Panel panelUser;
private System.Windows.Forms.TextBox textBoxUser;
private FontAwesome.Sharp.IconPictureBox iconPictureBoxUser;
private System.Windows.Forms.Label labelLogin;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
}
}