示例#1
0
文件: blist.cs 项目: 2f4usteel/SAT
 private void button3_Click(object sender, EventArgs e)
 {
     this.Hide();
     adminhome ah = new adminhome();
     ah.Show();
 }
示例#2
0
文件: start.cs 项目: 2f4usteel/SAT
        private void button6_Click(object sender, EventArgs e)
        {
            if (textBox3.Text == "admin" && textBox4.Text == "admin")
            {

                //username = textBox1.Text;
                this.Hide();
                adminhome ah = new adminhome();
                ah.Show();
                //main m = new main(username);
                //m.Show();
            }
            else
            {
                MessageBox.Show("invalid user");
            }
        }