See Also: UndoEngine Members
The System.ComponentModel.Design.UndoEngine abstract class provides a default implementation of undo functionality at design time. An undo unit represents a single unit of undoable work. This unit is added to a stack and the user can then walk the stack to undo each action. Undo units typically are designed to toggle, which means that calling undo twice returns the application to its starting state.
The System.ComponentModel.Design.UndoEngine class takes advantage of the following characteristics of objects running within the designer:
All interesting objects can be persisted to some format by the designer loader.
All objects raise property-change notifications when a property is changed.
System.ComponentModel.Design.IDesignerHost offers the idea of transactions, which can be used to fabricate an undo action that spans multiple smaller actions.
With these features, System.ComponentModel.Design.UndoEngine can fabricate any undo units it needs automatically.
Do not change property values directly. The System.ComponentModel.Design.UndoEngine class requires you to use the appropriate System.ComponentModel.TypeDescriptor to change property values.
System.ComponentModel.Design.UndoEngine monitors for change notifications to create undo units, and the units themselves consist of serialized object states. The following table shows the services that must be available when System.ComponentModel.Design.UndoEngine is created.
System.ComponentModel.Design.Serialization.ComponentSerializationService |
Saves property and object values for a component before and after a change is made. |
System.ComponentModel.Design.IComponentChangeService |
Notifies the undo engine of changes made to components. |
System.ComponentModel.Design.IDesignerHost |
Used to track transactions. |
Because the System.ComponentModel.Design.UndoEngine class requires System.ComponentModel.Design.Serialization.ComponentSerializationService and System.ComponentModel.Design.IComponentChangeService, it is available only at design time.
The undo engine tracks transactions and creates a single undo unit that encompasses a transaction. As a result, the undo engine has control over the duration of an undoable action. Also, because transactions can be named, undoable actions inherit their names from the current transaction. If no transaction is available and a change is reported, the undo engine creates an undo name based on the type of change (for example, "Change property 'Text'").