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