begin and initialise coursework project
This commit is contained in:
164
HCI_Coursework_EVCHARGE/Form2.Designer.cs
generated
Normal file
164
HCI_Coursework_EVCHARGE/Form2.Designer.cs
generated
Normal file
@@ -0,0 +1,164 @@
|
||||
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.accountNoTextBox = new System.Windows.Forms.TextBox();
|
||||
this.loginLabel = new System.Windows.Forms.Label();
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.confirmLoginButton = new System.Windows.Forms.Button();
|
||||
this.cancelLoginButton = new System.Windows.Forms.Button();
|
||||
this.accountIDLabel = new System.Windows.Forms.Label();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
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.textBox1);
|
||||
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;
|
||||
//
|
||||
// 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);
|
||||
//
|
||||
// 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";
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
|
||||
this.textBox1.BackColor = System.Drawing.SystemColors.Window;
|
||||
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.textBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
|
||||
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F);
|
||||
this.textBox1.Location = new System.Drawing.Point(80, 288);
|
||||
this.textBox1.MaxLength = 6;
|
||||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.PasswordChar = '*';
|
||||
this.textBox1.Size = new System.Drawing.Size(288, 35);
|
||||
this.textBox1.TabIndex = 2;
|
||||
//
|
||||
// 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;
|
||||
//
|
||||
// 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;
|
||||
//
|
||||
// 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";
|
||||
//
|
||||
// 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";
|
||||
//
|
||||
// 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 textBox1;
|
||||
private System.Windows.Forms.Label label1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user