2 writes to _autoScrollTimer
PresentationFramework (2)
System\Windows\Controls\ListBox.cs (2)
626
_autoScrollTimer
= new DispatcherTimer(DispatcherPriority.SystemIdle);
637
_autoScrollTimer
= null;
7 references to _autoScrollTimer
PresentationFramework (7)
System\Windows\Controls\ListBox.cs (7)
623
Debug.Assert(
_autoScrollTimer
== null, "IsMouseCaptured went from true to true");
624
if (
_autoScrollTimer
== null)
627
_autoScrollTimer
.Interval = AutoScrollTimeout;
628
_autoScrollTimer
.Tick += new EventHandler(OnAutoScrollTimeout);
629
_autoScrollTimer
.Start();
634
if (
_autoScrollTimer
!= null)
636
_autoScrollTimer
.Stop();