1 implementation of OpenedUnit
PresentationFramework (1)
src\Framework\MS\Internal\Documents\ParentUndoUnit.cs (1)
419public IParentUndoUnit OpenedUnit
19 references to OpenedUnit
PresentationFramework (19)
src\Framework\MS\Internal\Documents\ParentUndoUnit.cs (8)
144while (closeParent.OpenedUnit != null && closeParent.OpenedUnit != unit) 146closeParent = closeParent.OpenedUnit; 149if (closeParent.OpenedUnit == null) 176if (OpenedUnit.OpenedUnit != null) 206if (OpenedUnit.OpenedUnit != null) 565while (openedUnit.OpenedUnit != null) 567openedUnit = openedUnit.OpenedUnit;
src\Framework\MS\Internal\Documents\UndoManager.cs (8)
368while (closeParent.OpenedUnit != null && closeParent.OpenedUnit != unit) 370closeParent = closeParent.OpenedUnit; 373if (closeParent.OpenedUnit == null) 389if (unit.OpenedUnit != null) 409if (unit.OpenedUnit != null) 1086while (openedUnit.OpenedUnit != null) 1088openedUnit = openedUnit.OpenedUnit;
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (2)
390while (openedUnit.OpenedUnit != null) 392openedUnit = openedUnit.OpenedUnit;
src\Framework\System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
91openedUnit = ((IParentUndoUnit)_parentUndoUnit.Container).OpenedUnit;