1 write to _textEditor
PresentationFramework (1)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1526
_textEditor
= new TextEditor(_textContainer, this, true);
52 references to _textEditor
PresentationFramework (52)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (52)
1109
if (
_textEditor
!= null)
1111
_textEditor
.OnPreviewKeyDown(e);
1127
if (
_textEditor
!= null)
1129
_textEditor
.OnKeyDown(e);
1145
if (
_textEditor
!= null)
1147
_textEditor
.OnKeyUp(e);
1163
if (
_textEditor
!= null)
1165
_textEditor
.OnTextInput(e);
1181
if (
_textEditor
!= null)
1183
_textEditor
.OnMouseDown(e);
1199
if (
_textEditor
!= null)
1201
_textEditor
.OnMouseMove(e);
1217
if (
_textEditor
!= null)
1219
_textEditor
.OnMouseUp(e);
1235
if (
_textEditor
!= null)
1237
_textEditor
.OnQueryCursor(e);
1253
if (
_textEditor
!= null)
1255
_textEditor
.OnQueryContinueDrag(e);
1271
if (
_textEditor
!= null)
1273
_textEditor
.OnGiveFeedback(e);
1289
if (
_textEditor
!= null)
1291
_textEditor
.OnDragEnter(e);
1307
if (
_textEditor
!= null)
1309
_textEditor
.OnDragOver(e);
1325
if (
_textEditor
!= null)
1327
_textEditor
.OnDragLeave(e);
1343
if (
_textEditor
!= null)
1345
_textEditor
.OnDrop(e);
1362
if (
_textEditor
!= null)
1364
_textEditor
.OnContextMenuOpening(e);
1380
if (
_textEditor
!= null)
1382
_textEditor
.OnGotKeyboardFocus(e);
1398
if (
_textEditor
!= null)
1400
_textEditor
.OnLostKeyboardFocus(e);
1417
if (
_textEditor
!= null)
1419
_textEditor
.OnLostFocus(e);
1450
if (
_textEditor
.UndoState == UndoState.Redo)
1454
else if (
_textEditor
.UndoState == UndoState.Undo)
1510
Invariant.Assert(
_textEditor
!= null);
1511
Invariant.Assert(
_textEditor
.TextContainer == _textContainer);
1512
Invariant.Assert(
_textEditor
.TextContainer.TextSelection ==
_textEditor
.Selection);
1518
_textEditor
.OnDetach();
1527
_textEditor
.Selection.Changed += new EventHandler(OnSelectionChangedInternal);
1802
if (
_textEditor
!= null)
1806
_scrollViewer =
_textEditor
._Scroller as ScrollViewer;
1820
return (TextSelection)
_textEditor
.Selection;
1866
return
_textEditor
;
1895
if (
_textEditor
!= null)
1897
_textEditor
.Selection.DetachFromVisualTree();
1925
_textEditor
.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer!
1940
_textEditor
.TextView = null;