31 references to Tick
PresentationCore (6)
Core\CSharp\System\Windows\Input\InputManager.cs (1)
202_inputTimer.Tick += new EventHandler(ValidateInputDevices);
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
280_inertiaTimer.Tick += new EventHandler(OnInertiaTick);
Core\CSharp\System\Windows\Interop\HwndTarget.cs (1)
326_restoreDT.Tick += new EventHandler(InvalidateSelf);
Core\CSharp\System\Windows\Media\MediaContext.cs (3)
265_promoteRenderOpToInput.Tick += new EventHandler(PromoteRenderOpToInput); 267_promoteRenderOpToRender.Tick += new EventHandler(PromoteRenderOpToRender); 269_estimatedNextVSyncTimer.Tick += new EventHandler(EstimatedNextVSyncTimeExpired);
PresentationFramework (19)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
1144_throttleBackgroundTimer.Tick += new EventHandler(OnThrottleBackgroundTimeout);
src\Framework\MS\Internal\PtsHost\BackgroundFormatInfo.cs (1)
100_throttleBackgroundTimer.Tick += new EventHandler(OnThrottleBackgroundTimeout);
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1220_autoScrollTimer.Tick += new EventHandler(OnAutoScrollTimeout);
src\Framework\System\Windows\Controls\DataGrid.cs (1)
1723_autoScrollTimer.Tick += new EventHandler(OnAutoScrollTimeout);
src\Framework\System\Windows\Controls\ListBox.cs (1)
583_autoScrollTimer.Tick += new EventHandler(OnAutoScrollTimeout);
src\Framework\System\Windows\Controls\MenuItem.cs (2)
2601_openHierarchyTimer.Tick += (EventHandler)delegate(object sender, EventArgs e) 2620_closeHierarchyTimer.Tick += (EventHandler)delegate(object sender, EventArgs e)
src\Framework\System\Windows\Controls\PopupControlService.cs (4)
333ToolTipTimer.Tick += new EventHandler((s, e) => { RaiseToolTipOpeningEvent(fromKeyboard); }); 526ToolTipTimer.Tick += new EventHandler(OnRaiseToolTipClosingEvent); 588_forceCloseTimer.Tick += new EventHandler(OnForceClose); 596ToolTipTimer.Tick += new EventHandler(OnBetweenShowDelay);
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
1675_asyncDestroy.Tick += delegate(object sender, EventArgs args)
src\Framework\System\Windows\Controls\Primitives\RepeatButton.cs (1)
122_timer.Tick += new EventHandler(OnTimeout);
src\Framework\System\Windows\Controls\TextSearch.cs (1)
560_timeoutTimer.Tick += new EventHandler(OnTimeout);
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
8721_cleanupDelay.Tick += new EventHandler(OnDelayCleanup);
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
2744timer.Tick += new EventHandler(OnTimerTick);
src\Framework\System\windows\Documents\TextEditor.cs (2)
536_mouseSelectionState.Timer.Tick += new EventHandler(HandleMouseSelectionTick); 556_mouseSelectionState.Timer.Tick -= new EventHandler(HandleMouseSelectionTick);
src\Framework\System\Windows\Window.cs (1)
6786_taskbarRetryTimer.Tick += OnTaskbarRetryTimerTick;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (2)
209this.tryHideTimer.Tick += this.TryHideAnnotation; 291this.tryHideTimer.Tick -= this.TryHideAnnotation;
WindowsBase (4)
Base\System\Windows\SplashScreen.cs (1)
317_dt.Tick += new EventHandler(Fadeout_Tick);
Base\System\Windows\Threading\DispatcherTimer.cs (3)
99Tick += callback; 312if(Tick != null) 314Tick(this, EventArgs.Empty);