private void killTimer() { try { AppTimer.Dispose(); } catch { //swallow } }
public void Pause() { try { resumeSeconds = this.GetSecondsRemaining(); paused = true; AppTimer.Dispose(); AppTimer = null; } catch { } }