2 writes to PendingToolTipTimer
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (2)
387PendingToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal); 543PendingToolTipTimer = null;
10 references to PendingToolTipTimer
PresentationFramework (10)
System\Windows\Controls\PopupControlService.cs (10)
148if (PendingToolTipTimer?.Tag == BooleanBoxes.TrueBox) 154PendingToolTipTimer.Stop(); 160PendingToolTipTimer.Stop(); 161PendingToolTipTimer.Start(); 388PendingToolTipTimer.Interval = TimeSpan.FromMilliseconds(showDelay); 389PendingToolTipTimer.Tick += new EventHandler((s, e) => { PromotePendingToolTipToCurrent(triggerAction); }); 390PendingToolTipTimer.Tag = BooleanBoxes.Box(useShortDelay); 391PendingToolTipTimer.Start(); 540if (PendingToolTipTimer != null) 542PendingToolTipTimer.Stop();