2 writes to _mouseSelectionState
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
519_mouseSelectionState = new MouseSelectionState(); 542_mouseSelectionState = null;
17 references to _mouseSelectionState
PresentationFramework (17)
System\windows\Documents\TextEditor.cs (17)
517if (_mouseSelectionState == null) 520_mouseSelectionState.Timer = new DispatcherTimer(DispatcherPriority.Normal); 521_mouseSelectionState.Timer.Tick += new EventHandler(HandleMouseSelectionTick); 524_mouseSelectionState.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200)); 525_mouseSelectionState.Timer.Start(); 526_mouseSelectionState.Point = point; 528HandleMouseSelectionTick(_mouseSelectionState.Timer, EventArgs.Empty); 532_mouseSelectionState.Point = point; 538if (_mouseSelectionState != null) 540_mouseSelectionState.Timer.Stop(); 541_mouseSelectionState.Timer.Tick -= new EventHandler(HandleMouseSelectionTick); 1476if (_mouseSelectionState != null && !_mouseSelectionState.BringIntoViewInProgress && 1479_mouseSelectionState.BringIntoViewInProgress = true; 1481this.TextView.BringPointIntoViewAsync(_mouseSelectionState.Point, this); 1500if (_mouseSelectionState == null) 1504_mouseSelectionState.BringIntoViewInProgress = false;