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)
578Debug.Assert(_autoScrollTimer == null, "IsMouseCaptured went from true to true"); 579if (_autoScrollTimer == null) 582_autoScrollTimer.Interval = AutoScrollTimeout; 583_autoScrollTimer.Tick += new EventHandler(OnAutoScrollTimeout); 584_autoScrollTimer.Start(); 589if (_autoScrollTimer != null) 591_autoScrollTimer.Stop();