2 writes to _timer
Microsoft.Maui (2)
Animations\Ticker.cs (2)
44 _timer = new Timer 65 _timer = null;
10 references to _timer
Microsoft.Maui (10)
Animations\Ticker.cs (10)
19 public virtual bool IsRunning => _timer?.Enabled ?? false; 41 if (_timer != null) 50 _timer.Elapsed += OnTimerElapsed; 51 _timer.AutoReset = true; 52 _timer.Start(); 58 if (_timer == null) 61 _timer.AutoReset = false; 62 _timer.Stop(); 63 _timer.Elapsed -= OnTimerElapsed; 64 _timer.Dispose();