Files
VS_HCI/HCI_Coursework_EVCHARGE/LoginForm.Designer.cs
2024-04-19 02:24:05 +01:00

168 lines
8.1 KiB
C#

namespace HCI_Coursework_EVCHARGE
{
partial class AccountDetailForm
{
/// <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.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.accountIDLabel = new System.Windows.Forms.Label();
this.cancelLoginButton = new System.Windows.Forms.Button();
this.confirmLoginButton = new System.Windows.Forms.Button();
this.accountPinTextBox = new System.Windows.Forms.TextBox();
this.loginLabel = new System.Windows.Forms.Label();
this.accountNoTextBox = new System.Windows.Forms.TextBox();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.Control;
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.accountIDLabel);
this.panel1.Controls.Add(this.cancelLoginButton);
this.panel1.Controls.Add(this.confirmLoginButton);
this.panel1.Controls.Add(this.accountPinTextBox);
this.panel1.Controls.Add(this.loginLabel);
this.panel1.Controls.Add(this.accountNoTextBox);
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(456, 544);
this.panel1.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F);
this.label1.Location = new System.Drawing.Point(88, 256);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(49, 26);
this.label1.TabIndex = 6;
this.label1.Text = "PIN";
//
// accountIDLabel
//
this.accountIDLabel.AutoSize = true;
this.accountIDLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F);
this.accountIDLabel.Location = new System.Drawing.Point(88, 152);
this.accountIDLabel.Name = "accountIDLabel";
this.accountIDLabel.Size = new System.Drawing.Size(119, 26);
this.accountIDLabel.TabIndex = 5;
this.accountIDLabel.Text = "Account ID";
//
// cancelLoginButton
//
this.cancelLoginButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.cancelLoginButton.Location = new System.Drawing.Point(264, 392);
this.cancelLoginButton.Name = "cancelLoginButton";
this.cancelLoginButton.Size = new System.Drawing.Size(150, 75);
this.cancelLoginButton.TabIndex = 4;
this.cancelLoginButton.Text = "Cancel";
this.cancelLoginButton.UseVisualStyleBackColor = true;
this.cancelLoginButton.Click += new System.EventHandler(this.cancel_Click);
//
// confirmLoginButton
//
this.confirmLoginButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.confirmLoginButton.Location = new System.Drawing.Point(40, 392);
this.confirmLoginButton.Name = "confirmLoginButton";
this.confirmLoginButton.Size = new System.Drawing.Size(150, 75);
this.confirmLoginButton.TabIndex = 3;
this.confirmLoginButton.Text = "Login";
this.confirmLoginButton.UseVisualStyleBackColor = true;
this.confirmLoginButton.Click += new System.EventHandler(this.login_Click);
//
// accountPinTextBox
//
this.accountPinTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
this.accountPinTextBox.BackColor = System.Drawing.SystemColors.Window;
this.accountPinTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.accountPinTextBox.Cursor = System.Windows.Forms.Cursors.IBeam;
this.accountPinTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F);
this.accountPinTextBox.Location = new System.Drawing.Point(80, 288);
this.accountPinTextBox.MaxLength = 6;
this.accountPinTextBox.Name = "accountPinTextBox";
this.accountPinTextBox.PasswordChar = '*';
this.accountPinTextBox.Size = new System.Drawing.Size(288, 35);
this.accountPinTextBox.TabIndex = 2;
this.accountPinTextBox.Enter += new System.EventHandler(this.accountPin_Focus);
//
// loginLabel
//
this.loginLabel.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.loginLabel.AutoSize = true;
this.loginLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 22F);
this.loginLabel.Location = new System.Drawing.Point(120, 72);
this.loginLabel.Name = "loginLabel";
this.loginLabel.Size = new System.Drawing.Size(208, 36);
this.loginLabel.TabIndex = 1;
this.loginLabel.Text = "Account Login";
//
// accountNoTextBox
//
this.accountNoTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
this.accountNoTextBox.BackColor = System.Drawing.SystemColors.Window;
this.accountNoTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.accountNoTextBox.Cursor = System.Windows.Forms.Cursors.IBeam;
this.accountNoTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F);
this.accountNoTextBox.Location = new System.Drawing.Point(80, 184);
this.accountNoTextBox.MaxLength = 10;
this.accountNoTextBox.Name = "accountNoTextBox";
this.accountNoTextBox.Size = new System.Drawing.Size(288, 35);
this.accountNoTextBox.TabIndex = 0;
this.accountNoTextBox.Enter += new System.EventHandler(this.accountNo_Focus);
this.accountNoTextBox.Leave += new System.EventHandler(this.accountNo_LoseFocus);
//
// AccountDetailForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(456, 544);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "AccountDetailForm";
this.Text = "Account Detail Login";
this.TopMost = true;
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TextBox accountNoTextBox;
private System.Windows.Forms.Label loginLabel;
private System.Windows.Forms.Label accountIDLabel;
private System.Windows.Forms.Button cancelLoginButton;
private System.Windows.Forms.Button confirmLoginButton;
private System.Windows.Forms.TextBox accountPinTextBox;
private System.Windows.Forms.Label label1;
}
}