2
I need to put a schedule inside the TimeSpan
, and make it slow down. When it gets to [00:00:00] for the time. Need to do in 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 is as if it were the stopwatch, I put a time and when it reaches a limit, for everything. The limit in this case, here, would be the [00:00:00].
Resolves Sergio ?
– Rovann Linhalis
@Rovannlinhalis yes!
– sYsTeM