1 write to _textEditor
PresentationFramework (1)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1493
_textEditor
= new TextEditor(_textContainer, this, true);
52 references to _textEditor
PresentationFramework (52)
System\Windows\Controls\Primitives\TextBoxBase.cs (52)
1076
if (
_textEditor
!= null)
1078
_textEditor
.OnPreviewKeyDown(e);
1094
if (
_textEditor
!= null)
1096
_textEditor
.OnKeyDown(e);
1112
if (
_textEditor
!= null)
1114
_textEditor
.OnKeyUp(e);
1130
if (
_textEditor
!= null)
1132
_textEditor
.OnTextInput(e);
1148
if (
_textEditor
!= null)
1150
_textEditor
.OnMouseDown(e);
1166
if (
_textEditor
!= null)
1168
_textEditor
.OnMouseMove(e);
1184
if (
_textEditor
!= null)
1186
_textEditor
.OnMouseUp(e);
1202
if (
_textEditor
!= null)
1204
_textEditor
.OnQueryCursor(e);
1220
if (
_textEditor
!= null)
1222
_textEditor
.OnQueryContinueDrag(e);
1238
if (
_textEditor
!= null)
1240
_textEditor
.OnGiveFeedback(e);
1256
if (
_textEditor
!= null)
1258
_textEditor
.OnDragEnter(e);
1274
if (
_textEditor
!= null)
1276
_textEditor
.OnDragOver(e);
1292
if (
_textEditor
!= null)
1294
_textEditor
.OnDragLeave(e);
1310
if (
_textEditor
!= null)
1312
_textEditor
.OnDrop(e);
1329
if (
_textEditor
!= null)
1331
_textEditor
.OnContextMenuOpening(e);
1347
if (
_textEditor
!= null)
1349
_textEditor
.OnGotKeyboardFocus(e);
1365
if (
_textEditor
!= null)
1367
_textEditor
.OnLostKeyboardFocus(e);
1384
if (
_textEditor
!= null)
1386
_textEditor
.OnLostFocus(e);
1417
if (
_textEditor
.UndoState == UndoState.Redo)
1421
else if (
_textEditor
.UndoState == UndoState.Undo)
1477
Invariant.Assert(
_textEditor
!= null);
1478
Invariant.Assert(
_textEditor
.TextContainer == _textContainer);
1479
Invariant.Assert(
_textEditor
.TextContainer.TextSelection ==
_textEditor
.Selection);
1485
_textEditor
.OnDetach();
1494
_textEditor
.Selection.Changed += new EventHandler(OnSelectionChangedInternal);
1764
if (
_textEditor
!= null)
1768
_scrollViewer =
_textEditor
._Scroller as ScrollViewer;
1782
return (TextSelection)
_textEditor
.Selection;
1828
return
_textEditor
;
1857
if (
_textEditor
!= null)
1859
_textEditor
.Selection.DetachFromVisualTree();
1887
_textEditor
.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer!
1902
_textEditor
.TextView = null;