2 writes to _autoScrollTimer
PresentationFramework (2)
src\Framework\System\Windows\Controls\ComboBox.cs (2)
1218_autoScrollTimer = new DispatcherTimer(DispatcherPriority.SystemIdle); 1229_autoScrollTimer = null;
7 references to _autoScrollTimer
PresentationFramework (7)
src\Framework\System\Windows\Controls\ComboBox.cs (7)
1215Debug.Assert(_autoScrollTimer == null, "IsMouseCaptured went from true to true"); 1216if (_autoScrollTimer == null) 1219_autoScrollTimer.Interval = AutoScrollTimeout; 1220_autoScrollTimer.Tick += new EventHandler(OnAutoScrollTimeout); 1221_autoScrollTimer.Start(); 1226if (_autoScrollTimer != null) 1228_autoScrollTimer.Stop();