Ejemplo n.º 1
0
        private void buttonLogIn_Click(object sender, EventArgs e)
        {
            CGuiApplicationIntermediate cgai = CGuiApplicationIntermediate.InstanceCreation();

            if (cgai.logIn(textBoxUser.Text, textBoxPassword.Text))
            {
                this.Hide();
                cgai.showHomePage();
            }
        }
Ejemplo n.º 2
0
 private void buttonHome_Click(object sender, EventArgs e)
 {
     this.Hide();
     cgai.showHomePage();
 }