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)
1074if (_textEditor != null) 1076_textEditor.OnPreviewKeyDown(e); 1092if (_textEditor != null) 1094_textEditor.OnKeyDown(e); 1110if (_textEditor != null) 1112_textEditor.OnKeyUp(e); 1128if (_textEditor != null) 1130_textEditor.OnTextInput(e); 1146if (_textEditor != null) 1148_textEditor.OnMouseDown(e); 1164if (_textEditor != null) 1166_textEditor.OnMouseMove(e); 1182if (_textEditor != null) 1184_textEditor.OnMouseUp(e); 1200if (_textEditor != null) 1202_textEditor.OnQueryCursor(e); 1218if (_textEditor != null) 1220_textEditor.OnQueryContinueDrag(e); 1236if (_textEditor != null) 1238_textEditor.OnGiveFeedback(e); 1254if (_textEditor != null) 1256_textEditor.OnDragEnter(e); 1272if (_textEditor != null) 1274_textEditor.OnDragOver(e); 1290if (_textEditor != null) 1292_textEditor.OnDragLeave(e); 1308if (_textEditor != null) 1310_textEditor.OnDrop(e); 1327if (_textEditor != null) 1329_textEditor.OnContextMenuOpening(e); 1345if (_textEditor != null) 1347_textEditor.OnGotKeyboardFocus(e); 1363if (_textEditor != null) 1365_textEditor.OnLostKeyboardFocus(e); 1382if (_textEditor != null) 1384_textEditor.OnLostFocus(e); 1415if (_textEditor.UndoState == UndoState.Redo) 1419else if (_textEditor.UndoState == UndoState.Undo) 1475Invariant.Assert(_textEditor != null); 1476Invariant.Assert(_textEditor.TextContainer == _textContainer); 1477Invariant.Assert(_textEditor.TextContainer.TextSelection == _textEditor.Selection); 1483_textEditor.OnDetach(); 1492_textEditor.Selection.Changed += new EventHandler(OnSelectionChangedInternal); 1762if (_textEditor != null) 1766_scrollViewer = _textEditor._Scroller as ScrollViewer; 1780return (TextSelection)_textEditor.Selection; 1826return _textEditor; 1855if (_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;