2 writes to _mouseSelectionState
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
505
_mouseSelectionState
= new MouseSelectionState
530
_mouseSelectionState
= null;
16 references to _mouseSelectionState
PresentationFramework (16)
System\windows\Documents\TextEditor.cs (16)
503
if (
_mouseSelectionState
== null)
509
_mouseSelectionState
.Timer.Tick += new EventHandler(HandleMouseSelectionTick);
512
_mouseSelectionState
.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200));
513
_mouseSelectionState
.Timer.Start();
514
_mouseSelectionState
.Point = point;
516
HandleMouseSelectionTick(
_mouseSelectionState
.Timer, EventArgs.Empty);
520
_mouseSelectionState
.Point = point;
526
if (
_mouseSelectionState
!= null)
528
_mouseSelectionState
.Timer.Stop();
529
_mouseSelectionState
.Timer.Tick -= new EventHandler(HandleMouseSelectionTick);
1458
if (
_mouseSelectionState
!= null && !
_mouseSelectionState
.BringIntoViewInProgress &&
1461
_mouseSelectionState
.BringIntoViewInProgress = true;
1463
this.TextView.BringPointIntoViewAsync(
_mouseSelectionState
.Point, this);
1482
if (
_mouseSelectionState
== null)
1486
_mouseSelectionState
.BringIntoViewInProgress = false;