begin and initialise coursework project
This commit is contained in:
34
HCI_Coursework_EVCHARGE/Form1.cs
Normal file
34
HCI_Coursework_EVCHARGE/Form1.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
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 );
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user