2 writes to _timerID
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Timer.cs (2)
367
_timerID
= (int) SafeNativeMethods.SetTimer(new HandleRef(this, Handle), TimerID++, interval, IntPtr.Zero);
412
_timerID
= 0;
7 references to _timerID
System.Windows.Forms (7)
winforms\Managed\System\WinForms\Timer.cs (7)
310
return
_timerID
!= 0 && Handle != IntPtr.Zero;
365
if (
_timerID
== 0 && !_stoppingTimer) {
404
if (
_timerID
!= 0) {
409
SafeNativeMethods.KillTimer(new HandleRef(this, hWnd),
_timerID
);
430
Debug.Assert(
_timerID
== 0, "Destroying handle with timerID still set.");
442
Debug.Assert(
_timerID
== 0, "Destroying handle with timerID still set.");
456
if (unchecked( (int) (long)m.WParam) ==
_timerID
) {