1 type derived from TextParentUndoUnit
PresentationFramework (1)
System\Windows\Documents\TextStore.cs (1)
4349private class CompositionParentUndoUnit : TextParentUndoUnit
5 instantiations of TextParentUndoUnit
PresentationFramework (5)
System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
47_parentUndoUnit = new TextParentUndoUnit(textContainer.TextSelection);
System\Windows\Documents\ImmComposition.cs (1)
1786_compositionUndoUnit = new TextParentUndoUnit(_editor.Selection);
System\windows\Documents\TextEditorTyping.cs (1)
1811This._typingUndoUnit = new TextParentUndoUnit(This.Selection);
System\Windows\Documents\TextParentUndoUnit.cs (1)
155return new TextParentUndoUnit(this);
System\Windows\Documents\TextStore.cs (1)
3603TextParentUndoUnit textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start);
16 references to TextParentUndoUnit
PresentationFramework (16)
System\Windows\Controls\ComboBox.cs (1)
738undoManager.OpenedUnit.GetType() != typeof(TextParentUndoUnit))
System\Windows\Data\BindingExpressionBase.cs (1)
1329undoManager.OpenedUnit.GetType() != typeof(System.Windows.Documents.TextParentUndoUnit))
System\Windows\Documents\ChangeBlockUndoRecord.cs (2)
97if (_parentUndoUnit is TextParentUndoUnit) 99((TextParentUndoUnit)_parentUndoUnit).RecordRedoSelectionState();
System\Windows\Documents\ImmComposition.cs (1)
1986private TextParentUndoUnit _compositionUndoUnit;
System\windows\Documents\TextEditorTyping.cs (2)
1832if (This._typingUndoUnit is TextParentUndoUnit) 1834((TextParentUndoUnit)This._typingUndoUnit).RecordRedoSelectionState();
System\Windows\Documents\TextParentUndoUnit.cs (4)
79protected TextParentUndoUnit(TextParentUndoUnit undoUnit) 153protected virtual TextParentUndoUnit CreateRedoUnit() 158protected void MergeRedoSelectionState(TextParentUndoUnit undoUnit) 223private TextParentUndoUnit _redoUnit;
System\Windows\Documents\TextStore.cs (5)
3598private TextParentUndoUnit OpenTextParentUndoUnit() 3603TextParentUndoUnit textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start); 3612private void CloseTextParentUndoUnit(TextParentUndoUnit textParentUndoUnit, UndoCloseAction undoCloseAction) 3923TextParentUndoUnit completeUndoUnit = OpenTextParentUndoUnit(); 4365protected override TextParentUndoUnit CreateRedoUnit()