30 references to TextEditor
PresentationFramework (30)
MS\Internal\Helper.cs (1)
1477System.Windows.Documents.TextEditor te = tbb.TextEditor;
System\Windows\Controls\CustomDictionarySources.cs (2)
309if (_owner.TextEditor == null) 313return _owner.TextEditor.Speller;
System\Windows\Controls\Primitives\TextBoxBase.cs (13)
127TextEditorCopyPaste.Copy(this.TextEditor, false); 135TextEditorCopyPaste.Cut(this.TextEditor, false); 144TextEditorCopyPaste.Paste(this.TextEditor); 317this.TextEditor.Undo(); 335this.TextEditor.Redo(); 386this.TextEditor.Selection.BeginChange(); 394if (this.TextEditor.Selection.ChangeBlockLevel == 0) 399this.TextEditor.Selection.EndChange(); 408return this.TextEditor.Selection.DeclareChangeBlock(); 2096if ((textBox.TextEditor != null) && (textBox.TextEditor.TextStore != null)) 2104textBox.TextEditor.TextStore.OnGotFocus(); 2124caretElement.UpdateCaretBrush(TextSelection.GetCaretBrush(textBoxBase.TextEditor));
System\Windows\Controls\RichTextBox.cs (5)
119Invariant.Assert(this.TextEditor != null); 120Invariant.Assert(this.TextEditor.TextContainer == this.TextContainer); 225return this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 244SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 270return (TextPointer)this.TextEditor.GetNextSpellingErrorPosition(position, direction);
System\Windows\Controls\TextBox.cs (7)
95this.TextEditor.AcceptsRichContent = false; 479SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 484spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Backward); 557position = this.TextEditor.GetNextSpellingErrorPosition(position, direction); 1039this.TextEditor.Speller != null) 1041this.TextEditor.Speller.ResetErrors(); 1673UndoManager undoManager = TextEditor._GetUndoManager();
System\Windows\Documents\Run.cs (1)
272UndoManager undoManager = rtb.TextEditor._GetUndoManager();
System\windows\Documents\TextEditorTyping.cs (1)
247TextEditor This = richTextBox.TextEditor;