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)
511
if (
_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;
522
HandleMouseSelectionTick(
_mouseSelectionState
.Timer, EventArgs.Empty);
526
_mouseSelectionState
.Point = point;
532
if (
_mouseSelectionState
!= null)
534
_mouseSelectionState
.Timer.Stop();
535
_mouseSelectionState
.Timer.Tick -= new EventHandler(HandleMouseSelectionTick);
1470
if (
_mouseSelectionState
!= null && !
_mouseSelectionState
.BringIntoViewInProgress &&
1473
_mouseSelectionState
.BringIntoViewInProgress = true;
1475
this.TextView.BringPointIntoViewAsync(
_mouseSelectionState
.Point, this);
1494
if (
_mouseSelectionState
== null)
1498
_mouseSelectionState
.BringIntoViewInProgress = false;