2 writes to _mouseSelectionState
PresentationFramework (2)
src\Framework\System\windows\Documents\TextEditor.cs (2)
534_mouseSelectionState = new MouseSelectionState(); 557_mouseSelectionState = null;
17 references to _mouseSelectionState
PresentationFramework (17)
src\Framework\System\windows\Documents\TextEditor.cs (17)
532if (_mouseSelectionState == null) 535_mouseSelectionState.Timer = new DispatcherTimer(DispatcherPriority.Normal); 536_mouseSelectionState.Timer.Tick += new EventHandler(HandleMouseSelectionTick); 539_mouseSelectionState.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200)); 540_mouseSelectionState.Timer.Start(); 541_mouseSelectionState.Point = point; 543HandleMouseSelectionTick(_mouseSelectionState.Timer, EventArgs.Empty); 547_mouseSelectionState.Point = point; 553if (_mouseSelectionState != null) 555_mouseSelectionState.Timer.Stop(); 556_mouseSelectionState.Timer.Tick -= new EventHandler(HandleMouseSelectionTick); 1504if (_mouseSelectionState != null && !_mouseSelectionState.BringIntoViewInProgress && 1507_mouseSelectionState.BringIntoViewInProgress = true; 1509this.TextView.BringPointIntoViewAsync(_mouseSelectionState.Point, this); 1528if (_mouseSelectionState == null) 1532_mouseSelectionState.BringIntoViewInProgress = false;