3 writes to ToolTipTimer
PresentationFramework (3)
src\Framework\System\Windows\Controls\PopupControlService.cs (3)
330ToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal); 524ToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal); 594ToolTipTimer = new DispatcherTimer(DispatcherPriority.Normal);
10 references to ToolTipTimer
PresentationFramework (10)
src\Framework\System\Windows\Controls\PopupControlService.cs (10)
331ToolTipTimer.Interval = TimeSpan.FromMilliseconds(ToolTipService.GetInitialShowDelay(o)); 332ToolTipTimer.Tag = BooleanBoxes.TrueBox; // should open 333ToolTipTimer.Tick += new EventHandler((s, e) => { RaiseToolTipOpeningEvent(fromKeyboard); }); 334ToolTipTimer.Start(); 525ToolTipTimer.Interval = TimeSpan.FromMilliseconds(ToolTipService.GetShowDuration(o)); 526ToolTipTimer.Tick += new EventHandler(OnRaiseToolTipClosingEvent); 527ToolTipTimer.Start(); 595ToolTipTimer.Interval = TimeSpan.FromMilliseconds(ToolTipService.GetBetweenShowDelay(o)); 596ToolTipTimer.Tick += new EventHandler(OnBetweenShowDelay); 597ToolTipTimer.Start();