示例#1
0
 private void btnExit_Click(object sender, EventArgs e)
 {
     if (GameBookMB.Show("bạn có muốn thoát không ?", "Exit", MessageBoxButtons.YesNo) == DialogResult.Yes)
     {
         this.Close();
     }
 }
示例#2
0
 private void btnSearch_Click(object sender, EventArgs e)
 {
     if (tbUser.Text == "" || textBox1.Text == "")
     {
         GameBookMB.Show("Mời bạn điền đủ thông tin tài khoản !", "Lỗi", MessageBoxButtons.OK);
     }
     else
     {
         int check = checkTK();
         if (check == 1)
         {
             this.Hide();
             MainBoard form = new MainBoard();
             form.Show();
         }
         else
         {
             GameBookMB.Show(" Thông tin tài khoản bị sai !", "Lỗi", MessageBoxButtons.OK);
             tbUser.Text   = "";
             textBox1.Text = "";
         }
     }
 }