Files
VS_HCI/HCI_Coursework_EVCHARGE/Form1.cs

35 lines
792 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HCI_Coursework_EVCHARGE
{
public partial class LandingForm : Form
{
public LandingForm()
{
InitializeComponent();
}
private void loginLabel_Click(object sender, EventArgs e)
{
}
private void accountNo_Click(object sender, EventArgs e)
{
var loginForm = new AccountDetailForm();
loginForm.Show();
//loginForm.Top = this.Top + ( loginForm.Height / 3 );
//loginForm.Left = this.Left + ( ( this.Width * 3 ) / 7 );
}
}
}