public void Add_Shot_Time() { ShotTime++; if (ShotTime < 10) { ShotTime_lb.Text = "0" + ShotTime.ToString(); } else { ShotTime_lb.Text = ShotTime.ToString(); } }
public void DownTime_Timer2() { ShotTime--; if (ShotTime < 10) { ShotTime_lb.Text = "0" + ShotTime.ToString(); } else { ShotTime_lb.Text = ShotTime.ToString(); } Check_End_Shot_Time(); }
public void Dec_Shot_Time() { ShotTime--; if (ShotTime < 0) { return; } if (ShotTime < 10) { ShotTime_lb.Text = "0" + ShotTime.ToString(); } else { ShotTime_lb.Text = ShotTime.ToString(); } }