public void startCreateAccount_Click(object sender, EventArgs e)
 {
     // Hide Registration Menu Window
     this.Hide();
     // Creates a Session
     Session s = new Session();
     // Starts the CreateAccountController which opens createAccount window
     s.loadCreateAccountCtr();
     // Close Registration Menu window
     this.Close();
 }
 public SessionScreen()
 {
     s = new Session();
     InitializeComponent();
 }