1 type derived from TextParentUndoUnit
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextStore.cs (1)
4189
private 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)
1841
This._typingUndoUnit = new
TextParentUndoUnit
(This.Selection);
src\Framework\System\Windows\Documents\TextParentUndoUnit.cs (1)
160
return new
TextParentUndoUnit
(this);
src\Framework\System\Windows\Documents\TextStore.cs (1)
3505
TextParentUndoUnit 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)
740
undoManager.OpenedUnit.GetType() != typeof(
TextParentUndoUnit
))
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
1331
undoManager.OpenedUnit.GetType() != typeof(System.Windows.Documents.
TextParentUndoUnit
))
src\Framework\System\Windows\Documents\ChangeBlockUndoRecord.cs (2)
97
if (_parentUndoUnit is
TextParentUndoUnit
)
99
((
TextParentUndoUnit
)_parentUndoUnit).RecordRedoSelectionState();
src\Framework\System\Windows\Documents\ImmComposition.cs (1)
2181
private
TextParentUndoUnit
_compositionUndoUnit;
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1862
if (This._typingUndoUnit is
TextParentUndoUnit
)
1864
((
TextParentUndoUnit
)This._typingUndoUnit).RecordRedoSelectionState();
src\Framework\System\Windows\Documents\TextParentUndoUnit.cs (4)
84
protected TextParentUndoUnit(
TextParentUndoUnit
undoUnit)
158
protected virtual
TextParentUndoUnit
CreateRedoUnit()
163
protected void MergeRedoSelectionState(
TextParentUndoUnit
undoUnit)
228
private
TextParentUndoUnit
_redoUnit;
src\Framework\System\Windows\Documents\TextStore.cs (5)
3500
private
TextParentUndoUnit
OpenTextParentUndoUnit()
3505
TextParentUndoUnit
textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start);
3514
private void CloseTextParentUndoUnit(
TextParentUndoUnit
textParentUndoUnit, UndoCloseAction undoCloseAction)
3766
TextParentUndoUnit
completeUndoUnit = OpenTextParentUndoUnit();
4205
protected override
TextParentUndoUnit
CreateRedoUnit()