Stopwatch.IsRunning Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets a value indicating whether the Stopwatch timer is running.
Assembly: System (in System.dll)
Property Value
Type: System.BooleanReturns Boolean.
true if the Stopwatch instance is currently running and measuring elapsed time for an interval; otherwise, false.
A Stopwatch instance begins running with a call to Start() or StartNew(). The instance stops running with a call to Stop() or Reset().
Show: