private void BtnLogout_Click(object sender, EventArgs e)
        {
            AccountInterface f1 = new AccountInterface();

            f1.Show();
            this.Hide();
        }
Exemple #2
0
        private void BtnCancel_Click(object sender, EventArgs e)
        {
            this.Close();
            AccountInterface a1 = new AccountInterface();

            a1.Show();
        }