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)
1215
Debug.Assert(
_autoScrollTimer
== null, "IsMouseCaptured went from true to true");
1216
if (
_autoScrollTimer
== null)
1219
_autoScrollTimer
.Interval = AutoScrollTimeout;
1220
_autoScrollTimer
.Tick += new EventHandler(OnAutoScrollTimeout);
1221
_autoScrollTimer
.Start();
1226
if (
_autoScrollTimer
!= null)
1228
_autoScrollTimer
.Stop();