1 write to _textEditor
PresentationFramework (1)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1493_textEditor = new TextEditor(_textContainer, this, true);
52 references to _textEditor
PresentationFramework (52)
System\Windows\Controls\Primitives\TextBoxBase.cs (52)
1076if (_textEditor != null) 1078_textEditor.OnPreviewKeyDown(e); 1094if (_textEditor != null) 1096_textEditor.OnKeyDown(e); 1112if (_textEditor != null) 1114_textEditor.OnKeyUp(e); 1130if (_textEditor != null) 1132_textEditor.OnTextInput(e); 1148if (_textEditor != null) 1150_textEditor.OnMouseDown(e); 1166if (_textEditor != null) 1168_textEditor.OnMouseMove(e); 1184if (_textEditor != null) 1186_textEditor.OnMouseUp(e); 1202if (_textEditor != null) 1204_textEditor.OnQueryCursor(e); 1220if (_textEditor != null) 1222_textEditor.OnQueryContinueDrag(e); 1238if (_textEditor != null) 1240_textEditor.OnGiveFeedback(e); 1256if (_textEditor != null) 1258_textEditor.OnDragEnter(e); 1274if (_textEditor != null) 1276_textEditor.OnDragOver(e); 1292if (_textEditor != null) 1294_textEditor.OnDragLeave(e); 1310if (_textEditor != null) 1312_textEditor.OnDrop(e); 1329if (_textEditor != null) 1331_textEditor.OnContextMenuOpening(e); 1347if (_textEditor != null) 1349_textEditor.OnGotKeyboardFocus(e); 1365if (_textEditor != null) 1367_textEditor.OnLostKeyboardFocus(e); 1384if (_textEditor != null) 1386_textEditor.OnLostFocus(e); 1417if (_textEditor.UndoState == UndoState.Redo) 1421else if (_textEditor.UndoState == UndoState.Undo) 1477Invariant.Assert(_textEditor != null); 1478Invariant.Assert(_textEditor.TextContainer == _textContainer); 1479Invariant.Assert(_textEditor.TextContainer.TextSelection == _textEditor.Selection); 1485_textEditor.OnDetach(); 1494_textEditor.Selection.Changed += new EventHandler(OnSelectionChangedInternal); 1764if (_textEditor != null) 1768_scrollViewer = _textEditor._Scroller as ScrollViewer; 1782return (TextSelection)_textEditor.Selection; 1828return _textEditor; 1857if (_textEditor != null) 1859_textEditor.Selection.DetachFromVisualTree(); 1887_textEditor.TextView = textView; // REVIEW:benwest: this is redundant! TextEditor already has a ref to TextContainer! 1902_textEditor.TextView = null;