namespace HCI_Coursework_EVCHARGE { partial class AccountDetailForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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", 28F); this.label1.Location = new System.Drawing.Point(88, 240); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(81, 44); this.label1.TabIndex = 6; this.label1.Text = "PIN"; // // accountIDLabel // this.accountIDLabel.AutoSize = true; this.accountIDLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 28F); this.accountIDLabel.Location = new System.Drawing.Point(88, 136); this.accountIDLabel.Name = "accountIDLabel"; this.accountIDLabel.Size = new System.Drawing.Size(203, 44); this.accountIDLabel.TabIndex = 5; this.accountIDLabel.Text = "Account ID"; // // cancelLoginButton // this.cancelLoginButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.cancelLoginButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 28F); 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.Font = new System.Drawing.Font("Microsoft Sans Serif", 28F); 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", 35F); this.loginLabel.Location = new System.Drawing.Point(64, 40); this.loginLabel.Name = "loginLabel"; this.loginLabel.Size = new System.Drawing.Size(319, 54); 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; } }