2 writes to _autoScrollTimer
PresentationFramework (2)
System\Windows\Controls\ComboBox.cs (2)
1206
_autoScrollTimer
= new DispatcherTimer(DispatcherPriority.SystemIdle);
1217
_autoScrollTimer
= null;
7 references to _autoScrollTimer
PresentationFramework (7)
System\Windows\Controls\ComboBox.cs (7)
1203
Debug.Assert(
_autoScrollTimer
== null, "IsMouseCaptured went from true to true");
1204
if (
_autoScrollTimer
== null)
1207
_autoScrollTimer
.Interval = AutoScrollTimeout;
1208
_autoScrollTimer
.Tick += new EventHandler(OnAutoScrollTimeout);
1209
_autoScrollTimer
.Start();
1214
if (
_autoScrollTimer
!= null)
1216
_autoScrollTimer
.Stop();