1 write to Timer
PresentationFramework (1)
src\Framework\System\windows\Documents\TextEditor.cs (1)
535
_mouseSelectionState.
Timer
= new DispatcherTimer(DispatcherPriority.Normal);
6 references to Timer
PresentationFramework (6)
src\Framework\System\windows\Documents\TextEditor.cs (6)
536
_mouseSelectionState.
Timer
.Tick += new EventHandler(HandleMouseSelectionTick);
539
_mouseSelectionState.
Timer
.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200));
540
_mouseSelectionState.
Timer
.Start();
543
HandleMouseSelectionTick(_mouseSelectionState.
Timer
, EventArgs.Empty);
555
_mouseSelectionState.
Timer
.Stop();
556
_mouseSelectionState.
Timer
.Tick -= new EventHandler(HandleMouseSelectionTick);