27 instantiations of DispatcherTimer
PresentationCore (6)
Core\CSharp\System\Windows\Input\InputManager.cs (1)
201_inputTimer = new DispatcherTimer(DispatcherPriority.Background);
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
278_inertiaTimer = new DispatcherTimer();
Core\CSharp\System\Windows\Interop\HwndTarget.cs (1)
325_restoreDT = new DispatcherTimer();
Core\CSharp\System\Windows\Media\MediaContext.cs (3)
264_promoteRenderOpToInput = new DispatcherTimer(DispatcherPriority.Render); 266_promoteRenderOpToRender = new DispatcherTimer(DispatcherPriority.Render); 268_estimatedNextVSyncTimer = new DispatcherTimer(DispatcherPriority.Render);
PresentationFramework (18)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
1142_throttleBackgroundTimer = new DispatcherTimer(DispatcherPriority.Background);
src\Framework\MS\Internal\PtsHost\BackgroundFormatInfo.cs (1)
98_throttleBackgroundTimer = new DispatcherTimer(DispatcherPriority.Background);
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1218_autoScrollTimer = new DispatcherTimer(DispatcherPriority.SystemIdle);
src\Framework\System\Windows\Controls\DataGrid.cs (1)
1721_autoScrollTimer = new DispatcherTimer(DispatcherPriority.SystemIdle);
src\Framework\System\Windows\Controls\ListBox.cs (1)
581_autoScrollTimer = new DispatcherTimer(DispatcherPriority.SystemIdle);
src\Framework\System\Windows\Controls\MenuItem.cs (2)
2600_openHierarchyTimer = new DispatcherTimer(DispatcherPriority.Normal); 2619_closeHierarchyTimer = new DispatcherTimer(DispatcherPriority.Normal);
src\Framework\System\Windows\Controls\PopupControlService.cs (4)
330ToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal); 524ToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal); 586_forceCloseTimer = new DispatcherTimer(DispatcherPriority.Normal); 594ToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal);
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
1674_asyncDestroy = new DispatcherTimer(DispatcherPriority.Input);
src\Framework\System\Windows\Controls\Primitives\RepeatButton.cs (1)
121_timer = new DispatcherTimer();
src\Framework\System\Windows\Controls\TextSearch.cs (1)
559_timeoutTimer = new DispatcherTimer(DispatcherPriority.Normal);
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
8720_cleanupDelay = new DispatcherTimer();
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
2741DispatcherTimer timer = new DispatcherTimer();
src\Framework\System\windows\Documents\TextEditor.cs (1)
535_mouseSelectionState.Timer = new DispatcherTimer(DispatcherPriority.Normal);
src\Framework\System\Windows\Window.cs (1)
6784_taskbarRetryTimer = new DispatcherTimer { Interval = new TimeSpan(0, 1, 0) };
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (1)
207this.tryHideTimer = new DispatcherTimer();
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
1532var dt = new DispatcherTimer(TimeSpan.FromSeconds(6), DispatcherPriority.ApplicationIdle, (sender, e) => { tip.IsOpen = false; }, r.Dispatcher);
WindowsBase (1)
Base\System\Windows\SplashScreen.cs (1)
313_dt = new DispatcherTimer();
48 references to DispatcherTimer
PresentationCore (12)
Core\CSharp\System\Windows\Input\InputManager.cs (1)
1204private DispatcherTimer _inputTimer;
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
781private DispatcherTimer _inertiaTimer;
Core\CSharp\System\Windows\Interop\HwndTarget.cs (3)
238private DispatcherTimer _restoreDT; 1452DispatcherTimer sourceDT = (DispatcherTimer)s;
Core\CSharp\System\Windows\Media\MediaContext.cs (7)
2602((DispatcherTimer)sender).Stop(); 2612((DispatcherTimer)sender).Stop(); 2638DispatcherTimer timer = ((DispatcherTimer)sender); 2758private DispatcherTimer _promoteRenderOpToInput; 2759private DispatcherTimer _promoteRenderOpToRender; 2767private DispatcherTimer _estimatedNextVSyncTimer;
PresentationFramework (23)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
3256private DispatcherTimer _throttleBackgroundTimer;
src\Framework\MS\Internal\PtsHost\BackgroundFormatInfo.cs (1)
267private DispatcherTimer _throttleBackgroundTimer;
src\Framework\System\Windows\Controls\ComboBox.cs (1)
2043private DispatcherTimer _autoScrollTimer;
src\Framework\System\Windows\Controls\DataGrid.cs (1)
8682private DispatcherTimer _autoScrollTimer; // Timer to tick auto-scroll
src\Framework\System\Windows\Controls\ListBox.cs (1)
1016private DispatcherTimer _autoScrollTimer;
src\Framework\System\Windows\Controls\MenuItem.cs (4)
2635private void StopTimer(ref DispatcherTimer timer) 2644private void StartTimer(DispatcherTimer timer) 2777DispatcherTimer _openHierarchyTimer; 2778DispatcherTimer _closeHierarchyTimer;
src\Framework\System\Windows\Controls\PopupControlService.cs (3)
1073private DispatcherTimer ToolTipTimer 1206private DispatcherTimer _toolTipTimer; 1214private DispatcherTimer _forceCloseTimer;
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
2932private DispatcherTimer _asyncDestroy;
src\Framework\System\Windows\Controls\Primitives\RepeatButton.cs (1)
344private DispatcherTimer _timer;
src\Framework\System\Windows\Controls\TextSearch.cs (1)
863private DispatcherTimer _timeoutTimer;
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
11589private DispatcherTimer _cleanupDelay;
src\Framework\System\Windows\Data\BindingExpressionBase.cs (5)
1459DispatcherTimer timer = (DispatcherTimer)GetValue(Feature.Timer, null); 2263DispatcherTimer timer = (DispatcherTimer)GetValue(Feature.Timer, null); 2741DispatcherTimer timer = new DispatcherTimer();
src\Framework\System\windows\Documents\TextEditor.cs (1)
1999internal DispatcherTimer Timer;
src\Framework\System\Windows\Window.cs (1)
7761private DispatcherTimer _taskbarRetryTimer;
System.Activities.Presentation (5)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (4)
33private DispatcherTimer tryHideTimer; 201private DispatcherTimer TryHideTimer 473DispatcherTimer timer = sender as DispatcherTimer;
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
1532var dt = new DispatcherTimer(TimeSpan.FromSeconds(6), DispatcherPriority.ApplicationIdle, (sender, e) => { tip.IsOpen = false; }, r.Dispatcher);
WindowsBase (8)
Base\System\Windows\SplashScreen.cs (1)
44private DispatcherTimer _dt;
Base\System\Windows\Threading\Dispatcher.cs (7)
2810List<DispatcherTimer> timers = null; 2827DispatcherTimer timer = null; 2877internal void AddTimer(DispatcherTimer timer) 2890internal void RemoveTimer(DispatcherTimer timer) 2934DispatcherTimer timer = _timers[i]; 3221private List<DispatcherTimer> _timers = new List<DispatcherTimer>();