2 writes to _mouseSelectionState
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
513_mouseSelectionState = new MouseSelectionState(); 536_mouseSelectionState = null;
17 references to _mouseSelectionState
PresentationFramework (17)
System\windows\Documents\TextEditor.cs (17)
511if (_mouseSelectionState == null) 514_mouseSelectionState.Timer = new DispatcherTimer(DispatcherPriority.Normal); 515_mouseSelectionState.Timer.Tick += new EventHandler(HandleMouseSelectionTick); 518_mouseSelectionState.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200)); 519_mouseSelectionState.Timer.Start(); 520_mouseSelectionState.Point = point; 522HandleMouseSelectionTick(_mouseSelectionState.Timer, EventArgs.Empty); 526_mouseSelectionState.Point = point; 532if (_mouseSelectionState != null) 534_mouseSelectionState.Timer.Stop(); 535_mouseSelectionState.Timer.Tick -= new EventHandler(HandleMouseSelectionTick); 1470if (_mouseSelectionState != null && !_mouseSelectionState.BringIntoViewInProgress && 1473_mouseSelectionState.BringIntoViewInProgress = true; 1475this.TextView.BringPointIntoViewAsync(_mouseSelectionState.Point, this); 1494if (_mouseSelectionState == null) 1498_mouseSelectionState.BringIntoViewInProgress = false;