113 lines
4.9 KiB
C#
113 lines
4.9 KiB
C#
namespace HCI_Coursework_EVCHARGE
|
|
{
|
|
partial class LandingForm
|
|
{
|
|
/// <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.accountNoButton = new System.Windows.Forms.Button();
|
|
this.qrCodeButton = new System.Windows.Forms.Button();
|
|
this.loginLabel = new System.Windows.Forms.Label();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.panel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// accountNoButton
|
|
//
|
|
this.accountNoButton.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.accountNoButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F);
|
|
this.accountNoButton.Location = new System.Drawing.Point(220, 232);
|
|
this.accountNoButton.Name = "accountNoButton";
|
|
this.accountNoButton.Size = new System.Drawing.Size(144, 96);
|
|
this.accountNoButton.TabIndex = 0;
|
|
this.accountNoButton.Text = "Account Number";
|
|
this.accountNoButton.UseVisualStyleBackColor = true;
|
|
this.accountNoButton.Click += new System.EventHandler(this.accountNo_Click);
|
|
//
|
|
// qrCodeButton
|
|
//
|
|
this.qrCodeButton.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.qrCodeButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F);
|
|
this.qrCodeButton.Location = new System.Drawing.Point(504, 232);
|
|
this.qrCodeButton.Name = "qrCodeButton";
|
|
this.qrCodeButton.Size = new System.Drawing.Size(144, 96);
|
|
this.qrCodeButton.TabIndex = 1;
|
|
this.qrCodeButton.Text = "Account Card";
|
|
this.qrCodeButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// loginLabel
|
|
//
|
|
this.loginLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.loginLabel.AutoSize = true;
|
|
this.loginLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 34F);
|
|
this.loginLabel.Location = new System.Drawing.Point(360, 144);
|
|
this.loginLabel.Name = "loginLabel";
|
|
this.loginLabel.Size = new System.Drawing.Size(149, 53);
|
|
this.loginLabel.TabIndex = 2;
|
|
this.loginLabel.Text = "Log in";
|
|
this.loginLabel.Click += new System.EventHandler(this.loginLabel_Click);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.panel1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panel1.Controls.Add(this.loginLabel);
|
|
this.panel1.Controls.Add(this.qrCodeButton);
|
|
this.panel1.Controls.Add(this.accountNoButton);
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(854, 480);
|
|
this.panel1.TabIndex = 3;
|
|
//
|
|
// LandingForm
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.ClientSize = new System.Drawing.Size(854, 480);
|
|
this.Controls.Add(this.panel1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "LandingForm";
|
|
this.Text = "Form1";
|
|
this.TopMost = true;
|
|
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button accountNoButton;
|
|
private System.Windows.Forms.Button qrCodeButton;
|
|
private System.Windows.Forms.Label loginLabel;
|
|
private System.Windows.Forms.Panel panel1;
|
|
}
|
|
}
|
|
|