2 writes to _mouseSelectionState
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
519
_mouseSelectionState
= new MouseSelectionState();
542
_mouseSelectionState
= null;
17 references to _mouseSelectionState
PresentationFramework (17)
System\windows\Documents\TextEditor.cs (17)
517
if (
_mouseSelectionState
== null)
520
_mouseSelectionState
.Timer = new DispatcherTimer(DispatcherPriority.Normal);
521
_mouseSelectionState
.Timer.Tick += new EventHandler(HandleMouseSelectionTick);
524
_mouseSelectionState
.Timer.Interval = TimeSpan.FromMilliseconds(Math.Max(SystemParameters.MenuShowDelay, 200));
525
_mouseSelectionState
.Timer.Start();
526
_mouseSelectionState
.Point = point;
528
HandleMouseSelectionTick(
_mouseSelectionState
.Timer, EventArgs.Empty);
532
_mouseSelectionState
.Point = point;
538
if (
_mouseSelectionState
!= null)
540
_mouseSelectionState
.Timer.Stop();
541
_mouseSelectionState
.Timer.Tick -= new EventHandler(HandleMouseSelectionTick);
1476
if (
_mouseSelectionState
!= null && !
_mouseSelectionState
.BringIntoViewInProgress &&
1479
_mouseSelectionState
.BringIntoViewInProgress = true;
1481
this.TextView.BringPointIntoViewAsync(
_mouseSelectionState
.Point, this);
1500
if (
_mouseSelectionState
== null)
1504
_mouseSelectionState
.BringIntoViewInProgress = false;