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)
496
if (
_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;
509
HandleMouseSelectionTick(
_mouseSelectionState
.Timer, EventArgs.Empty);
513
_mouseSelectionState
.Point = point;
519
if (
_mouseSelectionState
!= null)
521
_mouseSelectionState
.Timer.Stop();
522
_mouseSelectionState
.Timer.Tick -= new EventHandler(HandleMouseSelectionTick);
1451
if (
_mouseSelectionState
!= null && !
_mouseSelectionState
.BringIntoViewInProgress &&
1454
_mouseSelectionState
.BringIntoViewInProgress = true;
1456
this.TextView.BringPointIntoViewAsync(
_mouseSelectionState
.Point, this);
1475
if (
_mouseSelectionState
== null)
1479
_mouseSelectionState
.BringIntoViewInProgress = false;