1 type derived from TextParentUndoUnit
PresentationFramework (1)
System\Windows\Documents\TextStore.cs (1)
4330private class CompositionParentUndoUnit : TextParentUndoUnit
5 instantiations of TextParentUndoUnit
PresentationFramework (5)
System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
44_parentUndoUnit = new TextParentUndoUnit(textContainer.TextSelection);
System\Windows\Documents\ImmComposition.cs (1)
1764_compositionUndoUnit = new TextParentUndoUnit(_editor.Selection);
System\windows\Documents\TextEditorTyping.cs (1)
1789This._typingUndoUnit = new TextParentUndoUnit(This.Selection);
System\Windows\Documents\TextParentUndoUnit.cs (1)
143return new TextParentUndoUnit(this);
System\Windows\Documents\TextStore.cs (1)
3584TextParentUndoUnit textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start);
16 references to TextParentUndoUnit
PresentationFramework (16)
System\Windows\Controls\ComboBox.cs (1)
719undoManager.OpenedUnit.GetType() != typeof(TextParentUndoUnit))
System\Windows\Data\BindingExpressionBase.cs (1)
1319undoManager.OpenedUnit.GetType() != typeof(System.Windows.Documents.TextParentUndoUnit))
System\Windows\Documents\ChangeBlockUndoRecord.cs (2)
94if (_parentUndoUnit is TextParentUndoUnit) 96((TextParentUndoUnit)_parentUndoUnit).RecordRedoSelectionState();
System\Windows\Documents\ImmComposition.cs (1)
1964private TextParentUndoUnit _compositionUndoUnit;
System\windows\Documents\TextEditorTyping.cs (2)
1810if (This._typingUndoUnit is TextParentUndoUnit) 1812((TextParentUndoUnit)This._typingUndoUnit).RecordRedoSelectionState();
System\Windows\Documents\TextParentUndoUnit.cs (4)
67protected TextParentUndoUnit(TextParentUndoUnit undoUnit) 141protected virtual TextParentUndoUnit CreateRedoUnit() 146protected void MergeRedoSelectionState(TextParentUndoUnit undoUnit) 211private TextParentUndoUnit _redoUnit;
System\Windows\Documents\TextStore.cs (5)
3579private TextParentUndoUnit OpenTextParentUndoUnit() 3584TextParentUndoUnit textParentUndoUnit = new TextParentUndoUnit(this.TextSelection, this.TextSelection.Start, this.TextSelection.Start); 3593private void CloseTextParentUndoUnit(TextParentUndoUnit textParentUndoUnit, UndoCloseAction undoCloseAction) 3904TextParentUndoUnit completeUndoUnit = OpenTextParentUndoUnit(); 4346protected override TextParentUndoUnit CreateRedoUnit()