2 writes to _autoScrollTimer
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
1714
_autoScrollTimer
= new DispatcherTimer(DispatcherPriority.SystemIdle);
1729
_autoScrollTimer
= null;
6 references to _autoScrollTimer
PresentationFramework (6)
System\Windows\Controls\DataGrid.cs (6)
1708
if (
_autoScrollTimer
== null)
1715
_autoScrollTimer
.Interval = AutoScrollTimeout;
1716
_autoScrollTimer
.Tick += new EventHandler(OnAutoScrollTimeout);
1717
_autoScrollTimer
.Start();
1726
if (
_autoScrollTimer
!= null)
1728
_autoScrollTimer
.Stop();