I need to set a time within TimeSpan
, and make it shorten the time. When you get to [00:00:00], for the time. I need to do this format: [00:00:00] - hour, minute, and second.
Below, I put 5 min.
private void timer1_Tick(object sender, EventArgs e)
{
TimeSpan tp = new TimeSpan(5, 0, 0);
string horario = "horario do timespan decrementado aqui";
}
It's like the stopwatch, I put a time and when it reaches a limit, for everything. The limit in this case here would be [00:00:00].