1 write to _textEditor
PresentationFramework (1)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1500_textEditor = new TextEditor(_textContainer, this, true);
52 references to _textEditor
PresentationFramework (52)
System\Windows\Controls\Primitives\TextBoxBase.cs (52)
1083if (_textEditor != null) 1085_textEditor.OnPreviewKeyDown(e); 1101if (_textEditor != null) 1103_textEditor.OnKeyDown(e); 1119if (_textEditor != null) 1121_textEditor.OnKeyUp(e); 1137if (_textEditor != null) 1139_textEditor.OnTextInput(e); 1155if (_textEditor != null) 1157_textEditor.OnMouseDown(e); 1173if (_textEditor != null) 1175_textEditor.OnMouseMove(e); 1191if (_textEditor != null) 1193_textEditor.OnMouseUp(e); 1209if (_textEditor != null) 1211_textEditor.OnQueryCursor(e); 1227if (_textEditor != null) 1229_textEditor.OnQueryContinueDrag(e); 1245if (_textEditor != null) 1247_textEditor.OnGiveFeedback(e); 1263if (_textEditor != null) 1265_textEditor.OnDragEnter(e); 1281if (_textEditor != null) 1283_textEditor.OnDragOver(e); 1299if (_textEditor != null) 1301_textEditor.OnDragLeave(e); 1317if (_textEditor != null) 1319_textEditor.OnDrop(e); 1336if (_textEditor != null) 1338_textEditor.OnContextMenuOpening(e); 1354if (_textEditor != null) 1356_textEditor.OnGotKeyboardFocus(e); 1372if (_textEditor != null) 1374_textEditor.OnLostKeyboardFocus(e); 1391if (_textEditor != null) 1393_textEditor.OnLostFocus(e); 1424if (_textEditor.UndoState == UndoState.Redo) 1428else if (_textEditor.UndoState == UndoState.Undo) 1484Invariant.Assert(_textEditor != null); 1485Invariant.Assert(_textEditor.TextContainer == _textContainer); 1486Invariant.Assert(_textEditor.TextContainer.TextSelection == _textEditor.Selection); 1492_textEditor.OnDetach(); 1501_textEditor.Selection.Changed += new EventHandler(OnSelectionChangedInternal); 1771if (_textEditor != null) 1775_scrollViewer = _textEditor._Scroller as ScrollViewer; 1789return (TextSelection)_textEditor.Selection; 1835return _textEditor; 1864if (_textEditor != null) 1866_textEditor.Selection.DetachFromVisualTree(); 1894_textEditor.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer! 1909_textEditor.TextView = null;