2 writes to _mouseSelectionState
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
498_mouseSelectionState = new MouseSelectionState 523_mouseSelectionState = null;
16 references to _mouseSelectionState
PresentationFramework (16)
System\windows\Documents\TextEditor.cs (16)
496if (_mouseSelectionState == null) 502_mouseSelectionState.Timer.Tick += new EventHandler(HandleMouseSelectionTick); 505_mouseSelectionState.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200)); 506_mouseSelectionState.Timer.Start(); 507_mouseSelectionState.Point = point; 509HandleMouseSelectionTick(_mouseSelectionState.Timer, EventArgs.Empty); 513_mouseSelectionState.Point = point; 519if (_mouseSelectionState != null) 521_mouseSelectionState.Timer.Stop(); 522_mouseSelectionState.Timer.Tick -= new EventHandler(HandleMouseSelectionTick); 1451if (_mouseSelectionState != null && !_mouseSelectionState.BringIntoViewInProgress && 1454_mouseSelectionState.BringIntoViewInProgress = true; 1456this.TextView.BringPointIntoViewAsync(_mouseSelectionState.Point, this); 1475if (_mouseSelectionState == null) 1479_mouseSelectionState.BringIntoViewInProgress = false;