2 writes to _inertiaTimer
PresentationCore (2)
System\Windows\Input\ManipulationLogic.cs (2)
254
_inertiaTimer
= new DispatcherTimer();
297
_inertiaTimer
= null;
5 references to _inertiaTimer
PresentationCore (5)
System\Windows\Input\ManipulationLogic.cs (5)
255
_inertiaTimer
.Interval = TimeSpan.FromMilliseconds(15);
256
_inertiaTimer
.Tick += new EventHandler(OnInertiaTick);
257
_inertiaTimer
.Start();
294
if (
_inertiaTimer
!= null)
296
_inertiaTimer
.Stop();