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();
            }
        }