Stopwatch.IsRunning Property
.NET Framework 3.0
Gets a value indicating whether the Stopwatch timer is running.
Namespace: System.Diagnostics
Assembly: System (in system.dll)
Assembly: System (in system.dll)
The following example uses the Stopwatch class to implement start, stop, reset, and lap-time buttons in a Windows form application. This code example is part of a larger example provided for the Stopwatch class.
if (stopWatch.IsRunning) { // Stop the timer; show the start and reset buttons. stopWatch.Stop(); buttonStartStop.Text = "Start"; buttonLapReset.Text = "Reset"; } else { // Start the timer; show the stop and lap buttons. stopWatch.Start(); buttonStartStop.Text = "Stop"; buttonLapReset.Text = "Lap"; labelLap.Visible = false; labelLapPrompt.Visible = false; }
if (stopWatch.get_IsRunning()) {
// Stop the timer; show the start and reset buttons.
stopWatch.Stop();
buttonStartStop.set_Text("Start");
buttonLapReset.set_Text("Reset");
}
else {
// Start the timer; show the stop and lap buttons.
stopWatch.Start();
buttonStartStop.set_Text("Stop");
buttonLapReset.set_Text("Lap");
labelLap.set_Visible(false);
labelLapPrompt.set_Visible(false);
}
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.