30 references to TextEditor
PresentationFramework (30)
MS\Internal\Helper.cs (1)
1493System.Windows.Documents.TextEditor te = tbb.TextEditor;
System\Windows\Controls\CustomDictionarySources.cs (2)
334if (_owner.TextEditor == null) 338return _owner.TextEditor.Speller;
System\Windows\Controls\Primitives\TextBoxBase.cs (13)
135TextEditorCopyPaste.Copy(this.TextEditor, false); 143TextEditorCopyPaste.Cut(this.TextEditor, false); 152TextEditorCopyPaste.Paste(this.TextEditor); 325this.TextEditor.Undo(); 343this.TextEditor.Redo(); 394this.TextEditor.Selection.BeginChange(); 402if (this.TextEditor.Selection.ChangeBlockLevel == 0) 407this.TextEditor.Selection.EndChange(); 416return this.TextEditor.Selection.DeclareChangeBlock(); 2176if ((textBox.TextEditor != null) && (textBox.TextEditor.TextStore != null)) 2184textBox.TextEditor.TextStore.OnGotFocus(); 2204caretElement.UpdateCaretBrush(TextSelection.GetCaretBrush(textBoxBase.TextEditor));
System\Windows\Controls\RichTextBox.cs (5)
124Invariant.Assert(this.TextEditor != null); 125Invariant.Assert(this.TextEditor.TextContainer == this.TextContainer); 230return this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 249SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 275return (TextPointer)this.TextEditor.GetNextSpellingErrorPosition(position, direction);
System\Windows\Controls\TextBox.cs (7)
101this.TextEditor.AcceptsRichContent = false; 485SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 490spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Backward); 563position = this.TextEditor.GetNextSpellingErrorPosition(position, direction); 1045this.TextEditor.Speller != null) 1047this.TextEditor.Speller.ResetErrors(); 1679UndoManager undoManager = TextEditor._GetUndoManager();
System\Windows\Documents\Run.cs (1)
282UndoManager undoManager = rtb.TextEditor._GetUndoManager();
System\windows\Documents\TextEditorTyping.cs (1)
260TextEditor This = richTextBox.TextEditor;