2 writes to _mouseSelectionState
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
504
_mouseSelectionState
= new MouseSelectionState
529
_mouseSelectionState
= null;
16 references to _mouseSelectionState
PresentationFramework (16)
System\windows\Documents\TextEditor.cs (16)
502
if (
_mouseSelectionState
== null)
508
_mouseSelectionState
.Timer.Tick += new EventHandler(HandleMouseSelectionTick);
511
_mouseSelectionState
.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200));
512
_mouseSelectionState
.Timer.Start();
513
_mouseSelectionState
.Point = point;
515
HandleMouseSelectionTick(
_mouseSelectionState
.Timer, EventArgs.Empty);
519
_mouseSelectionState
.Point = point;
525
if (
_mouseSelectionState
!= null)
527
_mouseSelectionState
.Timer.Stop();
528
_mouseSelectionState
.Timer.Tick -= new EventHandler(HandleMouseSelectionTick);
1457
if (
_mouseSelectionState
!= null && !
_mouseSelectionState
.BringIntoViewInProgress &&
1460
_mouseSelectionState
.BringIntoViewInProgress = true;
1462
this.TextView.BringPointIntoViewAsync(
_mouseSelectionState
.Point, this);
1481
if (
_mouseSelectionState
== null)
1485
_mouseSelectionState
.BringIntoViewInProgress = false;