2 writes to PendingToolTipTimer
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
397PendingToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal); 553PendingToolTipTimer = null;
10 references to PendingToolTipTimer
PresentationFramework (10)
System\Windows\Controls\PopupControlService.cs (10)
158if (PendingToolTipTimer?.Tag == BooleanBoxes.TrueBox) 164PendingToolTipTimer.Stop(); 170PendingToolTipTimer.Stop(); 171PendingToolTipTimer.Start(); 398PendingToolTipTimer.Interval = TimeSpan.FromMilliseconds(showDelay); 399PendingToolTipTimer.Tick += new EventHandler((s, e) => { PromotePendingToolTipToCurrent(triggerAction); }); 400PendingToolTipTimer.Tag = BooleanBoxes.Box(useShortDelay); 401PendingToolTipTimer.Start(); 550if (PendingToolTipTimer != null) 552PendingToolTipTimer.Stop();