2 writes to _autoScrollTimer
PresentationFramework (2)
src\Framework\System\Windows\Controls\ListBox.cs (2)
581
_autoScrollTimer
= new DispatcherTimer(DispatcherPriority.SystemIdle);
592
_autoScrollTimer
= null;
7 references to _autoScrollTimer
PresentationFramework (7)
src\Framework\System\Windows\Controls\ListBox.cs (7)
578
Debug.Assert(
_autoScrollTimer
== null, "IsMouseCaptured went from true to true");
579
if (
_autoScrollTimer
== null)
582
_autoScrollTimer
.Interval = AutoScrollTimeout;
583
_autoScrollTimer
.Tick += new EventHandler(OnAutoScrollTimeout);
584
_autoScrollTimer
.Start();
589
if (
_autoScrollTimer
!= null)
591
_autoScrollTimer
.Stop();