Esempio n. 1
0
 private void btnSave_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(textBox1.Text))
     {
         MessageBox.Show("Vui lòng nhập tên của bạn");
     }
     else
     {
         if (textBox1.Text.Length > 50)
         {
             MessageBox.Show("Tên không được quá 50 ký tự");
         }
         else
         {
             string _name = textBox1.Text;
             db.SaveHighScore(_name, _score);
             HighScore highScore = new HighScore();
             highScore.Show();
             this.Hide();
         }
     }
 }