2 writes to _autoScrollTimer
PresentationFramework (2)
System\Windows\Controls\ComboBox.cs (2)
1195
_autoScrollTimer
= new DispatcherTimer(DispatcherPriority.SystemIdle)
1206
_autoScrollTimer
= null;
5 references to _autoScrollTimer
PresentationFramework (5)
System\Windows\Controls\ComboBox.cs (5)
1192
Debug.Assert(
_autoScrollTimer
== null, "IsMouseCaptured went from true to true");
1193
if (
_autoScrollTimer
== null)
1199
_autoScrollTimer
.Tick += new EventHandler(OnAutoScrollTimeout);
1200
_autoScrollTimer
.Start();
1205
_autoScrollTimer
?.Stop();