1 write to _textEditor
PresentationFramework (1)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1491
_textEditor
= new TextEditor(_textContainer, this, true);
52 references to _textEditor
PresentationFramework (52)
System\Windows\Controls\Primitives\TextBoxBase.cs (52)
1074
if (
_textEditor
!= null)
1076
_textEditor
.OnPreviewKeyDown(e);
1092
if (
_textEditor
!= null)
1094
_textEditor
.OnKeyDown(e);
1110
if (
_textEditor
!= null)
1112
_textEditor
.OnKeyUp(e);
1128
if (
_textEditor
!= null)
1130
_textEditor
.OnTextInput(e);
1146
if (
_textEditor
!= null)
1148
_textEditor
.OnMouseDown(e);
1164
if (
_textEditor
!= null)
1166
_textEditor
.OnMouseMove(e);
1182
if (
_textEditor
!= null)
1184
_textEditor
.OnMouseUp(e);
1200
if (
_textEditor
!= null)
1202
_textEditor
.OnQueryCursor(e);
1218
if (
_textEditor
!= null)
1220
_textEditor
.OnQueryContinueDrag(e);
1236
if (
_textEditor
!= null)
1238
_textEditor
.OnGiveFeedback(e);
1254
if (
_textEditor
!= null)
1256
_textEditor
.OnDragEnter(e);
1272
if (
_textEditor
!= null)
1274
_textEditor
.OnDragOver(e);
1290
if (
_textEditor
!= null)
1292
_textEditor
.OnDragLeave(e);
1308
if (
_textEditor
!= null)
1310
_textEditor
.OnDrop(e);
1327
if (
_textEditor
!= null)
1329
_textEditor
.OnContextMenuOpening(e);
1345
if (
_textEditor
!= null)
1347
_textEditor
.OnGotKeyboardFocus(e);
1363
if (
_textEditor
!= null)
1365
_textEditor
.OnLostKeyboardFocus(e);
1382
if (
_textEditor
!= null)
1384
_textEditor
.OnLostFocus(e);
1415
if (
_textEditor
.UndoState == UndoState.Redo)
1419
else if (
_textEditor
.UndoState == UndoState.Undo)
1475
Invariant.Assert(
_textEditor
!= null);
1476
Invariant.Assert(
_textEditor
.TextContainer == _textContainer);
1477
Invariant.Assert(
_textEditor
.TextContainer.TextSelection ==
_textEditor
.Selection);
1483
_textEditor
.OnDetach();
1492
_textEditor
.Selection.Changed += new EventHandler(OnSelectionChangedInternal);
1762
if (
_textEditor
!= null)
1766
_scrollViewer =
_textEditor
._Scroller as ScrollViewer;
1780
return (TextSelection)
_textEditor
.Selection;
1826
return
_textEditor
;
1855
if (
_textEditor
!= null)
1857
_textEditor
.Selection.DetachFromVisualTree();
1885
_textEditor
.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer!
1900
_textEditor
.TextView = null;