30 references to TextEditor
PresentationFramework (30)
MS\Internal\Helper.cs (1)
1484
System.Windows.Documents.TextEditor te = tbb.
TextEditor
;
System\Windows\Controls\CustomDictionarySources.cs (2)
328
if (_owner.
TextEditor
== null)
332
return _owner.
TextEditor
.Speller;
System\Windows\Controls\Primitives\TextBoxBase.cs (13)
126
TextEditorCopyPaste.Copy(this.
TextEditor
, false);
134
TextEditorCopyPaste.Cut(this.
TextEditor
, false);
143
TextEditorCopyPaste.Paste(this.
TextEditor
);
316
this.
TextEditor
.Undo();
334
this.
TextEditor
.Redo();
385
this.
TextEditor
.Selection.BeginChange();
393
if (this.
TextEditor
.Selection.ChangeBlockLevel == 0)
398
this.
TextEditor
.Selection.EndChange();
407
return this.
TextEditor
.Selection.DeclareChangeBlock();
2167
if ((textBox.
TextEditor
!= null) && (textBox.
TextEditor
.TextStore != null))
2175
textBox.
TextEditor
.TextStore.OnGotFocus();
2195
caretElement.UpdateCaretBrush(TextSelection.GetCaretBrush(textBoxBase.
TextEditor
));
System\Windows\Controls\RichTextBox.cs (5)
120
Invariant.Assert(this.
TextEditor
!= null);
121
Invariant.Assert(this.
TextEditor
.TextContainer == this.TextContainer);
226
return this.
TextEditor
.GetSpellingErrorAtPosition(position, position.LogicalDirection);
245
SpellingError spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, position.LogicalDirection);
271
return (TextPointer)this.
TextEditor
.GetNextSpellingErrorPosition(position, direction);
System\Windows\Controls\TextBox.cs (7)
94
this.
TextEditor
.AcceptsRichContent = false;
478
SpellingError spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, LogicalDirection.Forward);
483
spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, LogicalDirection.Backward);
556
position = this.
TextEditor
.GetNextSpellingErrorPosition(position, direction);
1038
this.
TextEditor
.Speller != null)
1040
this.
TextEditor
.Speller.ResetErrors();
1672
UndoManager undoManager =
TextEditor
._GetUndoManager();
System\Windows\Documents\Run.cs (1)
282
UndoManager undoManager = rtb.
TextEditor
._GetUndoManager();
System\windows\Documents\TextEditorTyping.cs (1)
251
TextEditor This = richTextBox.
TextEditor
;