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)
128
TextEditorCopyPaste.Copy(this.
TextEditor
, false);
136
TextEditorCopyPaste.Cut(this.
TextEditor
, false);
145
TextEditorCopyPaste.Paste(this.
TextEditor
);
318
this.
TextEditor
.Undo();
336
this.
TextEditor
.Redo();
387
this.
TextEditor
.Selection.BeginChange();
395
if (this.
TextEditor
.Selection.ChangeBlockLevel == 0)
400
this.
TextEditor
.Selection.EndChange();
409
return this.
TextEditor
.Selection.DeclareChangeBlock();
2166
if ((textBox.
TextEditor
!= null) && (textBox.
TextEditor
.TextStore != null))
2174
textBox.
TextEditor
.TextStore.OnGotFocus();
2194
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)
96
this.
TextEditor
.AcceptsRichContent = false;
480
SpellingError spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, LogicalDirection.Forward);
485
spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, LogicalDirection.Backward);
558
position = this.
TextEditor
.GetNextSpellingErrorPosition(position, direction);
1040
this.
TextEditor
.Speller != null)
1042
this.
TextEditor
.Speller.ResetErrors();
1674
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
;