示例#1
0
文件: food_c.cs 项目: imakashsahu/HMS
        private void button2_Click(object sender, EventArgs e)
        {
            this.Hide();
            food frm = new food();

            frm.Show();
        }
示例#2
0
文件: R_Home.cs 项目: imakashsahu/HMS
        private void pictureBox4_Click(object sender, EventArgs e)
        {
            this.Hide();
            food frm = new food();

            frm.Show();
        }
示例#3
0
 private void pictureBox4_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("You are about to enter the Front Office Dashboard", "Warning", MessageBoxButtons.OKCancel) == DialogResult.OK)
     {
         this.Hide();
         food frm = new food();
         frm.Show();
     }
 }