Exemple #1
0
        private void picSecurity_Click(object sender, EventArgs e)
        {
            SecurityForm pa = new SecurityForm();

            if (pa == null)
            {
                pa.Parent = this;
            }
            pa.Show();
            this.Hide();
        }
Exemple #2
0
        private void lblBack_Click(object sender, EventArgs e)
        {
            SecurityForm se = new SecurityForm();

            if (se == null)
            {
                se.Parent = this;
            }
            se.Show();
            this.Hide();
        }