예제 #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            StaffLogin st = new StaffLogin();

            st.Show();
            this.Hide();
        }
예제 #2
0
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (comboBox1.Text.Equals("Admin"))
            {
                AdminLogin ad = new AdminLogin();
                ad.Show();
                this.Hide();
            }


            else if (comboBox1.Text.Equals("Teacher"))
            {
                TeacherLogin ad = new TeacherLogin();
                ad.Show();
                this.Hide();
            }

            else if (comboBox1.Text.Equals("Students"))
            {
                StudentLogin ad = new StudentLogin();
                ad.Show();
                this.Hide();
            }
            else if (comboBox1.Text.Equals("Parents"))
            {
                ParentsLogin ad = new ParentsLogin();
                ad.Show();
                this.Hide();
            }
            else if (comboBox1.Text.Equals("Staff"))
            {
                StaffLogin ad = new StaffLogin();
                ad.Show();
                this.Hide();
            }
        }
예제 #3
0
 private void button3_Click(object sender, EventArgs e)
 {
     StaffLogin lsl = new StaffLogin();
     lsl.Show();
     this.Hide();
 }