1 type derived from TextParentUndoUnit
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextStore.cs (1)
4189private class CompositionParentUndoUnit : TextParentUndoUnit
5 instantiations of TextParentUndoUnit
PresentationFramework (5)
src\Framework\System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
47_parentUndoUnit = new TextParentUndoUnit(textContainer.TextSelection);
src\Framework\System\Windows\Documents\ImmComposition.cs (1)
1976_compositionUndoUnit = new TextParentUndoUnit(_editor.Selection);
src\Framework\System\windows\Documents\TextEditorTyping.cs (1)
1841This._typingUndoUnit = new TextParentUndoUnit(This.Selection);
src\Framework\System\Windows\Documents\TextParentUndoUnit.cs (1)
160return new TextParentUndoUnit(this);
src\Framework\System\Windows\Documents\TextStore.cs (1)
3505TextParentUndoUnit textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start);
16 references to TextParentUndoUnit
PresentationFramework (16)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
740undoManager.OpenedUnit.GetType() != typeof(TextParentUndoUnit))
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
1331undoManager.OpenedUnit.GetType() != typeof(System.Windows.Documents.TextParentUndoUnit))
src\Framework\System\Windows\Documents\ChangeBlockUndoRecord.cs (2)
97if (_parentUndoUnit is TextParentUndoUnit) 99((TextParentUndoUnit)_parentUndoUnit).RecordRedoSelectionState();
src\Framework\System\Windows\Documents\ImmComposition.cs (1)
2181private TextParentUndoUnit _compositionUndoUnit;
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1862if (This._typingUndoUnit is TextParentUndoUnit) 1864((TextParentUndoUnit)This._typingUndoUnit).RecordRedoSelectionState();
src\Framework\System\Windows\Documents\TextParentUndoUnit.cs (4)
84protected TextParentUndoUnit(TextParentUndoUnit undoUnit) 158protected virtual TextParentUndoUnit CreateRedoUnit() 163protected void MergeRedoSelectionState(TextParentUndoUnit undoUnit) 228private TextParentUndoUnit _redoUnit;
src\Framework\System\Windows\Documents\TextStore.cs (5)
3500private TextParentUndoUnit OpenTextParentUndoUnit() 3505TextParentUndoUnit textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start); 3514private void CloseTextParentUndoUnit(TextParentUndoUnit textParentUndoUnit, UndoCloseAction undoCloseAction) 3766TextParentUndoUnit completeUndoUnit = OpenTextParentUndoUnit(); 4205protected override TextParentUndoUnit CreateRedoUnit()