1 write to _textEditor
PresentationFramework (1)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1438
_textEditor
= new TextEditor(_textContainer, this, true);
33 references to _textEditor
PresentationFramework (33)
System\Windows\Controls\Primitives\TextBoxBase.cs (33)
1075
_textEditor
?.OnPreviewKeyDown(e);
1090
_textEditor
?.OnKeyDown(e);
1105
_textEditor
?.OnKeyUp(e);
1120
_textEditor
?.OnTextInput(e);
1135
_textEditor
?.OnMouseDown(e);
1150
_textEditor
?.OnMouseMove(e);
1165
_textEditor
?.OnMouseUp(e);
1180
_textEditor
?.OnQueryCursor(e);
1195
_textEditor
?.OnQueryContinueDrag(e);
1210
_textEditor
?.OnGiveFeedback(e);
1225
_textEditor
?.OnDragEnter(e);
1240
_textEditor
?.OnDragOver(e);
1255
_textEditor
?.OnDragLeave(e);
1270
_textEditor
?.OnDrop(e);
1286
_textEditor
?.OnContextMenuOpening(e);
1301
_textEditor
?.OnGotKeyboardFocus(e);
1316
_textEditor
?.OnLostKeyboardFocus(e);
1332
_textEditor
?.OnLostFocus(e);
1362
if (
_textEditor
.UndoState == UndoState.Redo)
1366
else if (
_textEditor
.UndoState == UndoState.Undo)
1422
Invariant.Assert(
_textEditor
!= null);
1423
Invariant.Assert(
_textEditor
.TextContainer == _textContainer);
1424
Invariant.Assert(
_textEditor
.TextContainer.TextSelection ==
_textEditor
.Selection);
1430
_textEditor
.OnDetach();
1439
_textEditor
.Selection.Changed += new EventHandler(OnSelectionChangedInternal);
1697
if (
_textEditor
!= null)
1701
_scrollViewer =
_textEditor
._Scroller as ScrollViewer;
1715
return (TextSelection)
_textEditor
.Selection;
1761
return
_textEditor
;
1790
_textEditor
?.Selection.DetachFromVisualTree();
1817
_textEditor
.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer!
1832
_textEditor
.TextView = null;