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)
1109if (_textEditor != null) 1111_textEditor.OnPreviewKeyDown(e); 1127if (_textEditor != null) 1129_textEditor.OnKeyDown(e); 1145if (_textEditor != null) 1147_textEditor.OnKeyUp(e); 1163if (_textEditor != null) 1165_textEditor.OnTextInput(e); 1181if (_textEditor != null) 1183_textEditor.OnMouseDown(e); 1199if (_textEditor != null) 1201_textEditor.OnMouseMove(e); 1217if (_textEditor != null) 1219_textEditor.OnMouseUp(e); 1235if (_textEditor != null) 1237_textEditor.OnQueryCursor(e); 1253if (_textEditor != null) 1255_textEditor.OnQueryContinueDrag(e); 1271if (_textEditor != null) 1273_textEditor.OnGiveFeedback(e); 1289if (_textEditor != null) 1291_textEditor.OnDragEnter(e); 1307if (_textEditor != null) 1309_textEditor.OnDragOver(e); 1325if (_textEditor != null) 1327_textEditor.OnDragLeave(e); 1343if (_textEditor != null) 1345_textEditor.OnDrop(e); 1362if (_textEditor != null) 1364_textEditor.OnContextMenuOpening(e); 1380if (_textEditor != null) 1382_textEditor.OnGotKeyboardFocus(e); 1398if (_textEditor != null) 1400_textEditor.OnLostKeyboardFocus(e); 1417if (_textEditor != null) 1419_textEditor.OnLostFocus(e); 1450if (_textEditor.UndoState == UndoState.Redo) 1454else if (_textEditor.UndoState == UndoState.Undo) 1510Invariant.Assert(_textEditor != null); 1511Invariant.Assert(_textEditor.TextContainer == _textContainer); 1512Invariant.Assert(_textEditor.TextContainer.TextSelection == _textEditor.Selection); 1518_textEditor.OnDetach(); 1527_textEditor.Selection.Changed += new EventHandler(OnSelectionChangedInternal); 1802if (_textEditor != null) 1806_scrollViewer = _textEditor._Scroller as ScrollViewer; 1820return (TextSelection)_textEditor.Selection; 1866return _textEditor; 1895if (_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;