Работа с таймером - C# (185615)

Узнай цену своей работы

Формулировка задачи:

Сделал таймер но он работает существенно медленнее чем должен. Отображение HH:mm:ss:ff. Интервал поставил 10 миллисекунд, и каждый раз оно пересчитывает и обновляет текст в textBox. Я думаю что это из за скорости работы методов, если от этого что-то зависит, то как воплощать это иначе? Или же как усовершенствовать мой вариант? Вот так я делаю при каждом "тике"
Листинг программы
  1. private void timer_GameResult_Tick(object sender, EventArgs e)
  2. {
  3. GameTimer.RefreshTime();
  4. tb_TimeResult.Text = GameTimer.CurrentTime;
  5. }
Собстивенно сам класс обработки информации о времени:
Листинг программы
  1. public static class GameTimer
  2. {
  3. // Show Current time in Format HH:MM:SS:mm
  4. public static string CurrentTime {get;private set;}
  5. private static int currentMillisecs; // current milliseconds
  6. private static int currentSecs; // current seconds
  7. private static int currentMins; // current minutes
  8. private static int currentHours; // current hours
  9.  
  10. private static void SetToZero()
  11. {
  12. currentMillisecs = 0;
  13. currentSecs = 0;
  14. currentMins = 0;
  15. currentHours = 0;
  16. }
  17. #region Methods for adding one point to time
  18. // Add 10 milliseconds
  19. private static void AddTenMillisec()
  20. {
  21. if (currentMillisecs == 990) // If it's MAX, add one ses, and set millisecs to zero
  22. {
  23. AddOneSec();
  24. currentMillisecs = 0;
  25. }
  26. else
  27. currentMillisecs += 10;
  28. }
  29. // Same with AddTenMillisec, but with Sec
  30. private static void AddOneSec()
  31. {
  32. if (currentSecs == 59)
  33. {
  34. AddOneMin();
  35. currentSecs = 0;
  36. }
  37. else
  38. currentSecs += 1;
  39. }
  40. // Same with AddTenMillisec, but with Mins
  41. private static void AddOneMin()
  42. {
  43. if (currentMins == 59)
  44. {
  45. AddOneHour();
  46. currentMins = 0;
  47. }
  48. else
  49. currentMins += 1;
  50. }
  51. // Same with AddTenMillisec, but with Hours
  52. private static void AddOneHour()
  53. {
  54. currentHours += 1;
  55. }
  56. #endregion
  57. public static void RefreshTime(bool toZero = false)
  58. {
  59. if (!toZero)
  60. AddTenMillisec();
  61. else
  62. SetToZero();
  63. CurrentTime = String.Format("{0:00}:{1:00}:{2:00}:{3:00}", currentHours, currentMins, currentSecs, currentMillisecs/10);
  64. }
  65. }

Решение задачи: «Работа с таймером»

textual
Листинг программы
  1. DateTime time = new DateTime(0, 0);
  2.         private void timer1_Tick(object sender, EventArgs e)
  3.         {
  4.             time = time.AddSeconds(0.1);
  5.             label1.Text = time.ToString("mm:ss.ff");
  6.         }
  7.  
  8.         private void start_Click(object sender, EventArgs e)
  9.         {
  10.             if (timer1.Enabled == true)
  11.                 timer1.Enabled = false;
  12.             else
  13.                 timer1.Enabled = true;
  14.         }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

7   голосов , оценка 3.857 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут