Hola intente llevar a cabo tu código pero no se por que no me dio resultado, yo tengo código de como restar entres dos, pero el resultado de esa necesito sumarla a otra cada vez que doy clic en un botos no se si me puedan ayudar dejo parte de mi código de antemano muchas gracias.
private void btnInterrupcion_Click(object sender, EventArgs e)
{
Tiempos.Interval = 25;
txtInterrupcion.Text = DateTime.Now.ToLongTimeString();
btnReanudar.Enabled = true;
txtReanudar.Text = "";
btnInterrupcion.Enabled = false;
}
private void btnReanudar_Click(object sender, EventArgs e)
{
Tiempos.Stop();
txtReanudar.Text = DateTime.Now.ToLongTimeString();
try
{
DateTime StartTime = DateTime.Parse(txtInterrupcion.Text);
DateTime EndTime = DateTime.Parse(txtReanudar.Text);
TimeSpan Span = EndTime.Subtract(StartTime);
DateTime TotalTime = DateTime.Parse(Span.Hours + ":" + Span.Minutes + ":" + Span.Seconds);
txtTiempoInterrupcion.Text = TotalTime.ToString("HH:mm:ss");
txtInterrupcion.Text = "";
btnInterrupcion.Enabled = true;
btnReanudar.Enabled = false;
}
catch (Exception ex)
{
MessageBox.Show("Error...");
}
}
GRACIAS...