1 write to _textEditor
PresentationFramework (1)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1438_textEditor = new TextEditor(_textContainer, this, true);
33 references to _textEditor
PresentationFramework (33)
System\Windows\Controls\Primitives\TextBoxBase.cs (33)
1075_textEditor?.OnPreviewKeyDown(e); 1090_textEditor?.OnKeyDown(e); 1105_textEditor?.OnKeyUp(e); 1120_textEditor?.OnTextInput(e); 1135_textEditor?.OnMouseDown(e); 1150_textEditor?.OnMouseMove(e); 1165_textEditor?.OnMouseUp(e); 1180_textEditor?.OnQueryCursor(e); 1195_textEditor?.OnQueryContinueDrag(e); 1210_textEditor?.OnGiveFeedback(e); 1225_textEditor?.OnDragEnter(e); 1240_textEditor?.OnDragOver(e); 1255_textEditor?.OnDragLeave(e); 1270_textEditor?.OnDrop(e); 1286_textEditor?.OnContextMenuOpening(e); 1301_textEditor?.OnGotKeyboardFocus(e); 1316_textEditor?.OnLostKeyboardFocus(e); 1332_textEditor?.OnLostFocus(e); 1362if (_textEditor.UndoState == UndoState.Redo) 1366else if (_textEditor.UndoState == UndoState.Undo) 1422Invariant.Assert(_textEditor != null); 1423Invariant.Assert(_textEditor.TextContainer == _textContainer); 1424Invariant.Assert(_textEditor.TextContainer.TextSelection == _textEditor.Selection); 1430_textEditor.OnDetach(); 1439_textEditor.Selection.Changed += new EventHandler(OnSelectionChangedInternal); 1697if (_textEditor != null) 1701_scrollViewer = _textEditor._Scroller as ScrollViewer; 1715return (TextSelection)_textEditor.Selection; 1761return _textEditor; 1790_textEditor?.Selection.DetachFromVisualTree(); 1817_textEditor.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer! 1832_textEditor.TextView = null;