示例#1
0
 public void Dec_Score_T2()
 {
     if (T2_score <= 0)
     {
         return;
     }
     T2_score--;
     T2_score_lb.Text = T2_score.ToString();
 }
示例#2
0
 public void Add_Score_T2()
 {
     T2_score++;
     if (T2_score < 10)
     {
         T2_score_lb.Text = "0" + T2_score.ToString();
     }
     else
     {
         T2_score_lb.Text = T2_score.ToString();
     }
 }